Clear profile upload flag when unregistering.

This commit is contained in:
Cody Henthorne
2021-09-20 15:09:22 -04:00
committed by Alex Hart
parent dee3d2ff2d
commit aae368c049
2 changed files with 5 additions and 0 deletions

View File

@@ -55,4 +55,8 @@ public final class RegistrationValues extends SignalStoreValues {
public void markHasUploadedProfile() {
putBoolean(HAS_UPLOADED_PROFILE, true);
}
public void clearHasUploadedProfile() {
putBoolean(HAS_UPLOADED_PROFILE, false);
}
}