diff --git a/api/funkwhale_api/common/scripts/migrate_to_user_libraries.py b/api/funkwhale_api/common/scripts/migrate_to_user_libraries.py
index 8a6e47801..54ba5d503 100644
--- a/api/funkwhale_api/common/scripts/migrate_to_user_libraries.py
+++ b/api/funkwhale_api/common/scripts/migrate_to_user_libraries.py
@@ -109,7 +109,7 @@ def set_fid(queryset, path, stdout):
def update_shared_inbox_url(stdout):
stdout.write("* Update shared inbox url for local actors...")
- candidates = federation_models.Actor.objects.local().filter(shared_inbox_url=None)
+ candidates = federation_models.Actor.objects.local()
url = federation_models.get_shared_inbox_url()
candidates.update(shared_inbox_url=url)
diff --git a/demo/setup.sh b/demo/setup.sh
index 3f238ebe9..a19f6a7d4 100755
--- a/demo/setup.sh
+++ b/demo/setup.sh
@@ -47,7 +47,7 @@ u = User.objects.create(email="demo@demo.com", username="demo", is_staff=True, i
u.set_password("demo")
u.subsonic_api_token = "demo"
u.save()
-
+actor = u.create_actor()
library = actor.libraries.create(name='Demo library', privacy_level='everyone')
from funkwhale_api.common import preferences
diff --git a/front/src/components/Sidebar.vue b/front/src/components/Sidebar.vue
index 8d4afacf3..f04b947af 100644
--- a/front/src/components/Sidebar.vue
+++ b/front/src/components/Sidebar.vue
@@ -49,7 +49,6 @@
v-if="$store.state.ui.notifications.inbox > 0"
:class="['ui', 'teal', 'label']">
{{ $store.state.ui.notifications.inbox }}
-
Logout