Compare commits

..

6 commits

Author SHA1 Message Date
31a51fd76f .github/workflows/maven.yml aktualisiert 2025-01-05 20:15:44 -05:00
e4e071b551 .github/workflows/maven.yml aktualisiert 2025-01-05 20:14:57 -05:00
potzplitz
a21f5e04a4
Update DecryptXOR.java 2024-10-21 10:53:20 +02:00
potzplitz
49f80a53be
Update DecryptXOR.java 2024-10-17 11:45:55 +02:00
potzplitz
bd754f04e6
Update PreChecks.java 2024-10-17 11:44:11 +02:00
potzplitz
eaf293fc09 updating works again 2024-09-17 18:10:10 +02:00
4 changed files with 12 additions and 5 deletions

View file

@ -9,7 +9,7 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
runs-on: docker
steps:
- name: Checkout Repository
uses: actions/checkout@v3

View file

@ -6,6 +6,7 @@ import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import org.apache.commons.io.FileUtils;
import org.json.JSONException;
import org.json.JSONObject;
public class GuiData {
@ -80,8 +81,15 @@ public class GuiData {
localLevels.add(obj.getString("name"));
id.add(obj.getInt("id") + "");
try {
verifier.add(obj.getString("verifier"));
creator.add(obj.getString("author"));
} catch (JSONException e) {
verifier.add(Long.toString(obj.getLong("verifier")));
creator.add(Long.toString(obj.getLong("author")));
}
qualification.add(obj.getInt("percentToQualify") + "");
ytlink.add(obj.getString("verification") + "");
creators.add(obj.getJSONArray("creators") + "");

View file

@ -24,5 +24,4 @@ public class PreChecks {
migration.migrateData();
}
}
}