Merge pull request #5568 from ByteHamster/fix-null-guid

Backport null guid sync errors
This commit is contained in:
ByteHamster 2021-11-21 21:01:57 +01:00 committed by GitHub
commit 837845ad02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ public class GuidValidator {
public static boolean isValidGuid(String guid) { public static boolean isValidGuid(String guid) {
return guid != null return guid != null
&& !guid.trim().isEmpty(); && !guid.trim().isEmpty()
&& !guid.equals("null");
} }
} }