Skip to content

Commit

Permalink
Fix left pane banner colors
Browse files Browse the repository at this point in the history
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
  • Loading branch information
automated-signal and indutny-signal committed Nov 8, 2023
1 parent 7106352 commit 842332a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stylesheets/components/LeftPaneBanner.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
color: $color-gray-75;
}
@include dark-theme {
background-color: $color-gray-60;
background-color: $color-gray-75;
color: $color-gray-15;
}

Expand Down
3 changes: 2 additions & 1 deletion ts/services/usernameIntegrity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { DAY } from '../util/durations';
import { drop } from '../util/drop';
import { BackOff, FIBONACCI_TIMEOUTS } from '../util/BackOff';
import { checkForUsername } from '../util/lookupConversationWithoutServiceId';
import { storageJobQueue } from '../util/JobQueue';
import * as log from '../logging/log';
import { resolveUsernameByLink } from './username';

Expand Down Expand Up @@ -42,7 +43,7 @@ class UsernameIntegrityService {

private async safeCheck(): Promise<void> {
try {
await this.check();
await storageJobQueue(() => this.check());
this.backOff.reset();
await window.storage.put('usernameLastIntegrityCheck', Date.now());

Expand Down

0 comments on commit 842332a

Please sign in to comment.