mirror of
https://github.com/iv-org/invidious.git
synced 2025-07-25 13:35:47 -05:00
Get a count of 0 if STORAGE_KEY_NOTIF_COUNT is not present in storage
Not sure if this is necessary as I think it should always be present in storage, but just in case it isn't
This commit is contained in:
parent
a84bb1d22e
commit
3335bc8c38
@ -77,7 +77,7 @@ function create_notification_stream(subscriptions) {
|
|||||||
function update_ticker_count() {
|
function update_ticker_count() {
|
||||||
var notification_ticker = document.getElementById('notification_ticker');
|
var notification_ticker = document.getElementById('notification_ticker');
|
||||||
|
|
||||||
const notification_count = helpers.storage.get(STORAGE_KEY_NOTIF_COUNT);
|
const notification_count = helpers.storage.get(STORAGE_KEY_NOTIF_COUNT) || 0;
|
||||||
if (notification_count > 0) {
|
if (notification_count > 0) {
|
||||||
notification_ticker.innerHTML =
|
notification_ticker.innerHTML =
|
||||||
'<span id="notification_count">' + notification_count + '</span> <i class="icon ion-ios-notifications"></i>';
|
'<span id="notification_count">' + notification_count + '</span> <i class="icon ion-ios-notifications"></i>';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user