mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-04 08:39:49 +01:00
Fix notification delivery
This commit is contained in:
parent
a1e96d971d
commit
baa8a66827
@ -36,9 +36,10 @@
|
|||||||
<div class="pure-g">
|
<div class="pure-g">
|
||||||
<div class="pure-u-1-3">
|
<div class="pure-u-1-3">
|
||||||
<a href="/feed/subscriptions" class="pure-menu-heading">
|
<a href="/feed/subscriptions" class="pure-menu-heading">
|
||||||
<% notifications = env.get("user").as(User).notifications.size %>
|
<% notification_count = env.get("user").as(User).notifications.size %>
|
||||||
<% if notifications > 0 %>
|
<% puts notification_count %>
|
||||||
<center><%= notifications %> <i class="fas fa-bell"></i></center>
|
<% if notification_count > 0 %>
|
||||||
|
<center><%= notification_count %> <i class="fas fa-bell"></i></center>
|
||||||
<% else %>
|
<% else %>
|
||||||
<center><i class="far fa-bell"></i></center>
|
<center><i class="far fa-bell"></i></center>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
Loading…
Reference in New Issue
Block a user