Skip to content

Commit

Permalink
[128] Fix initializing Kometa integration within UI
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinHeist committed Jul 14, 2024
1 parent 0da3e20 commit a9ed78c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/templates/js/connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ function initializePlex() {
plexForm.querySelector('input[name="url"]').value = connection.url;
plexForm.querySelector('input[name="api_key"]').value = connection.api_key;
// SSL later
// PMM integration later
// Kometa integration later
plexForm.querySelector('input[name="filesize_limit"]').value = connection.filesize_limit;

return plexForm;
Expand All @@ -640,9 +640,9 @@ function initializePlex() {
$(`#connection${connection.id} .checkbox[data-value="use_ssl"]`).checkbox(
connection.use_ssl ? 'check' : 'uncheck'
);
// Integrate with PMM
$(`#connection${connection.id} .checkbox[data-value="integrate_with_pmm"]`).checkbox(
connection.integrate_with_pmm ? 'check' : 'uncheck'
// Integrate with Kometa
$(`#connection${connection.id} .checkbox[data-value="integrate_with_kometa"]`).checkbox(
connection.integrate_with_kometa ? 'check' : 'uncheck'
);
// Assign appropriate Tautulli modal form launch to button
$(`#connection${connection.id} .button[data-action="tautulli"]`).on('click', () => {
Expand Down
2 changes: 1 addition & 1 deletion modules/ref/version_webui
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0-alpha.10.1-webui127
v2.0-alpha.10.1-webui128

0 comments on commit a9ed78c

Please sign in to comment.