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

Merge pull request #3247 from thornbill/remove-network-library

Remove network device option from add library dialog
This commit is contained in:
Bill Thornton 2021-12-29 17:19:25 -05:00 committed by GitHub
commit a9dd511bfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 13 deletions

View file

@ -32,16 +32,12 @@ function refreshDirectoryBrowser(page, path, fileOptions, updatePathOnError) {
const promises = [];
if (path === 'Network') {
promises.push(ApiClient.getNetworkDevices());
} else {
if (path) {
promises.push(ApiClient.getDirectoryContents(path, fileOptions));
promises.push(ApiClient.getParentPath(path));
} else {
promises.push(ApiClient.getDrives());
}
}
Promise.all(promises).then(
responses => {
@ -61,10 +57,6 @@ function refreshDirectoryBrowser(page, path, fileOptions, updatePathOnError) {
html += getItem(cssClass, folder.Type, folder.Path, folder.Name);
}
if (!path) {
html += getItem('lnkPath lnkDirectory', '', 'Network', globalize.translate('ButtonNetwork'));
}
page.querySelector('.results').innerHTML = html;
loading.hide();
}, () => {

View file

@ -85,7 +85,6 @@
"ButtonLibraryAccess": "Library access",
"ButtonManualLogin": "Manual Login",
"ButtonMore": "More",
"ButtonNetwork": "Network",
"ButtonNextTrack": "Next track",
"ButtonOk": "Ok",
"ButtonOpen": "Open",