We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdae04a commit f1e5bf4Copy full SHA for f1e5bf4
src/main/java/org/maxgamer/quickshop/shop/ShopLoader.java
@@ -493,7 +493,7 @@ public class ShopDatabaseInfo {
493
this.extra = deserializeExtra(origin.getExtra(), needUpdate);
494
this.currency = origin.getCurrency();
495
this.disableDisplay = origin.isDisableDisplay();
496
- this.taxAccount = UUID.fromString(origin.getTaxAccount());
+ this.taxAccount = origin.getTaxAccount() != null ? UUID.fromString(origin.getTaxAccount()) : null;
497
} catch (Exception ex) {
498
exceptionHandler(ex, this.location);
499
}
0 commit comments