Skip to content

Commit

Permalink
fixed typo in config
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyRacer1337 committed Oct 29, 2024
1 parent d401437 commit 4e62a39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Stash/Configuration/configPage.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1>Stash</h1>
ApiClient.getPluginConfiguration(pluginConfig.pluginUniqueId).then(function (config) {
$('#StashEndpoint').val(config.StashEndpoint).change();
$('#StashAPIKey').val(config.StashAPIKey).change();
$('#UseFilePath').prop('checked', config.UseFullPathToSearch);
$('#UseFilePath').prop('checked', config.UseFilePath);
$('#UseFullPathToSearch').prop('checked', config.UseFullPathToSearch);
$('#AddDisambiguation').prop('checked', config.AddDisambiguation);

Expand All @@ -64,7 +64,7 @@ <h1>Stash</h1>
ApiClient.getPluginConfiguration(pluginConfig.pluginUniqueId).then(function (config) {
config.StashEndpoint = $('#StashEndpoint').val();
config.StashAPIKey = $('#StashAPIKey').val();
config.UseFullPathToSearch = $('#UseFilePath').prop('checked');
config.UseFilePath = $('#UseFilePath').prop('checked');
config.UseFullPathToSearch = $('#UseFullPathToSearch').prop('checked');
config.AddDisambiguation = $('#AddDisambiguation').prop('checked');

Expand Down

0 comments on commit 4e62a39

Please sign in to comment.