Browse Source

donate stats fix v5

master
gsd 1 year ago
parent
commit
2b6f71eebf
  1. 5
      src/main/java/app/entities/db/DonateStat.java

5
src/main/java/app/entities/db/DonateStat.java

@ -38,25 +38,21 @@ public class DonateStat {
//потом бля
}
@JsonValue
public Integer getRubles() {
if (this.giveMethod == VipGiveMethod.QIWI) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]);
return 0;
}
@JsonValue
public Integer getTF2Keys() {
if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]);
return 0;
}
@JsonValue
public Integer getTF2Refs() {
if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[1].split("=")[1]);
return 0;
}
@JsonValue
public String getStatus() {
switch (this.giveMethod) {
case FREE -> {
@ -80,7 +76,6 @@ public class DonateStat {
return "Неизвестно";
}
@JsonValue
public String getBeExtended() {
return extended?"Была продлена":"";
}

Loading…
Cancel
Save