You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: The fields below should stop being optional once refreshable UIDs features get rolled out in production. We can remove them one by one as necessary.
39
+
// AU, 2025/07/28
38
40
SaltEntry.KeyMaterialcurrentKey = null;
39
41
SaltEntry.KeyMaterialpreviousKey = null;
40
-
41
-
// TODO: The fields below should stop being optional once the refresh from, previous salt
42
-
// and refreshable UIDs features get rolled out in production. We can remove them one by one as necessary.
43
-
// AU, 2025/04/28
44
-
if (fields.length > 3) {
45
-
refreshFrom = Long.parseLong(fields[3]);
46
-
}
47
-
if (fields.length > 4) {
48
-
previousSalt = fields[4];
49
-
}
50
-
if (fields.length > 7) {
42
+
if (trimToNull(fields[5]) != null && trimToNull(fields[6]) != null) {
0 commit comments