Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohdan Krokhmaliuk committed Jul 23, 2021
1 parent df443f8 commit 528615c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -74,7 +74,7 @@ public void onMethodCall(final @NonNull MethodCall call, final @NonNull Result r
result.success("Billing client has ended.");
} else if (call.method.equals("consumeAllItems")) {
// consumable is a separate type in amazon
result.error("AMAZON_NOT_USED","no-ops in amazon",null);
result.error("E_NO_OP_IN_AMAZON","no-ops in amazon",null);
} else if (call.method.equals("getItemsByType")) {
Log.d(TAG, "getItemsByType");
String type = call.argument("type");
Expand Down Expand Up @@ -123,7 +123,7 @@ public void onMethodCall(final @NonNull MethodCall call, final @NonNull Result r
result.success(null);
} else if (call.method.equals("consumeProduct")) {
// consumable is a separate type in amazon
result.error("AMAZON_NOT_USED","no-ops in amazon",null);
result.error("E_NO_OP_IN_AMAZON","no-ops in amazon",null);
} else {
result.notImplemented();
}
Expand Down

0 comments on commit 528615c

Please sign in to comment.