Skip to content
Snippets Groups Projects
Commit a0553ccf authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch 'minor-fixes-bis' into 'develop'

Minor fixes

See merge request funkwhale/funkwhale!419
parents 84ed7e0b 527edc1e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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
......
......@@ -49,7 +49,6 @@
v-if="$store.state.ui.notifications.inbox > 0"
:class="['ui', 'teal', 'label']">
{{ $store.state.ui.notifications.inbox }}</div>
<img class="ui right floated circular tiny avatar image" v-if="$store.state.auth.profile.avatar.square_crop" :src="$store.getters['instance/absoluteUrl']($store.state.auth.profile.avatar.square_crop)" />
</router-link>
<router-link class="item" v-if="$store.state.auth.authenticated" :to="{name: 'logout'}"><i class="sign out icon"></i><translate>Logout</translate></router-link>
<template v-else>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment