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

Correct syntax error in networkPath

This commit is contained in:
Joshua Boniface 2019-03-13 21:34:58 -04:00
parent 65aec76e06
commit f698ba1f39

View file

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