mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 04:28:04 +01:00
Really REALLY fix instrumentation for re-registration of recently-deleted accounts
This commit is contained in:
committed by
Jon Chambers
parent
601e9eebbd
commit
0cdc32cf65
@@ -250,9 +250,7 @@ public class AccountsManager {
|
||||
final Tags tags;
|
||||
|
||||
if (freshUser) {
|
||||
tags = Tags.of("type", "new");
|
||||
} else if (maybeRecentlyDeletedAccountIdentifier.isPresent()) {
|
||||
tags = Tags.of("type", "recently-deleted");
|
||||
tags = Tags.of("type", maybeRecentlyDeletedAccountIdentifier.isPresent() ? "recently-deleted" : "new");
|
||||
} else {
|
||||
tags = Tags.of("type", "re-registration");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user