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

Merge pull request #181 from joshuaboniface/fix-syntax-error

Correct syntax error in networkPath
This commit is contained in:
Joshua M. Boniface 2019-03-13 21:59:07 -04:00 committed by GitHub
commit 770a3a1626
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ define(["jQuery", "loading", "fnchecked", "emby-checkbox", "emby-textarea", "emb
$("#txtMetadataPath", view).val(path);
}
if (networkPath) {
$("#txtMetadataNetworkPath", view).val(networkPath));
$("#txtMetadataNetworkPath", view).val(networkPath);
}
picker.close();
},