Merge pull request #5568 from ByteHamster/fix-null-guid
Backport null guid sync errors
This commit is contained in:
commit
837845ad02
|
@ -4,7 +4,8 @@ public class GuidValidator {
|
|||
|
||||
public static boolean isValidGuid(String guid) {
|
||||
return guid != null
|
||||
&& !guid.trim().isEmpty();
|
||||
&& !guid.trim().isEmpty()
|
||||
&& !guid.equals("null");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue