1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-05 03:03:26 +00:00

Revert changes

This commit is contained in:
Todd Martin
2025-09-04 13:08:48 -04:00
parent 9946f61296
commit 45af419633

View File

@@ -172,7 +172,6 @@ export class DefaultServerNotificationsService implements ServerNotificationsSer
private hasAccessToken$(userId: UserId) {
return this.configService.getFeatureFlag$(FeatureFlag.PushNotificationsWhenLocked).pipe(
distinctUntilChanged(),
switchMap((featureFlagEnabled) => {
if (featureFlagEnabled) {
return this.authService.authStatusFor$(userId).pipe(
@@ -306,23 +305,11 @@ export class DefaultServerNotificationsService implements ServerNotificationsSer
startListening() {
return this.notifications$
.pipe(
mergeMap(async ([notification, userId]) => {
try {
await this.processNotification(notification, userId);
} catch (err: unknown) {
this.logService.error(
`Problem processing notification of type ${notification.type}`,
err,
);
}
}),
mergeMap(async ([notification, userId]) => this.processNotification(notification, userId)),
)
.subscribe({
error: (err: unknown) =>
this.logService.error(
"Fatal error in server notifications$ observable, notifications won't be recieved anymore.",
err,
),
error: (e: unknown) =>
this.logService.warning("Error in server notifications$ observable", e),
});
}