FIX - PG AppName Migration (#18139)

This commit is contained in:
Pere Miquel Brull 2024-10-07 16:35:16 +02:00 committed by GitHub
parent aa7b95a515
commit 1a42f4633e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ public class MigrationUtil {
try {
UUID appId = UUID.fromString(row.get("appid").toString());
// Ignore if this has already been migrated
JsonObject json = JsonUtils.readJson((String) row.get("json")).asJsonObject();
JsonObject json = JsonUtils.readJson(row.get("json").toString()).asJsonObject();
if (json.containsKey("appName")) {
return;
}