We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84b3219 commit 4cac5b3Copy full SHA for 4cac5b3
2 files changed
src/pages/plugin/plugin.js
@@ -168,7 +168,7 @@ export default async function PluginInclude(
168
]);
169
if (product) {
170
const purchase = await getPurchase(product.productId);
171
- purchased = !!purchase;
+ purchased = !!purchase || remotePlugin.owned;
172
price = product.price;
173
purchaseToken = purchase?.purchaseToken;
174
}
src/plugins/auth/src/android/PluginRetriever.java
@@ -15,8 +15,6 @@
15
16
public class PluginRetriever {
17
private static final String TAG = "AcodePluginRetriever";
18
- private static final int LIMIT = 50;
19
- private static final String API_BASE = "https://acode.app/api";
20
private static final String SUPPORTED_EDITOR = "cm";
21
22
0 commit comments