1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #1330 from MediaBrowser/master

require admin for refresh button
This commit is contained in:
Luke 2015-12-18 12:37:10 -05:00
commit 64dcf13851

View file

@ -784,7 +784,10 @@
commands.push('editimages');
}
commands.push('refresh');
if (user.Policy.IsAdministrator) {
commands.push('refresh');
}
if (SyncManager.isAvailable(item, user)) {
commands.push('sync');