diff --git a/.github/workflows/publish-installers.yml b/.github/workflows/publish-installers.yml
index d7140f18..120b102b 100644
--- a/.github/workflows/publish-installers.yml
+++ b/.github/workflows/publish-installers.yml
@@ -71,11 +71,6 @@ jobs:
run: |
pyinstaller -y ./package/Tautulli-${{ matrix.os }}.spec
- - name: Move Windows Updater Files
- if: matrix.os == 'windows'
- run: |
- Move-Item dist\updater\* dist\Tautulli\ -Force
-
- name: Create Windows Installer
uses: joncloud/makensis-action@v3.4
if: matrix.os == 'windows'
diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html
index 319852e9..e6f21deb 100644
--- a/data/interfaces/default/base.html
+++ b/data/interfaces/default/base.html
@@ -61,7 +61,7 @@
Update your Docker container or Dismiss
% elif plexpy.INSTALL_TYPE == 'snap':
Update your Snap package or Dismiss
- % elif plexpy.INSTALL_TYPE == 'macos':
+ % elif plexpy.INSTALL_TYPE in ('windows', 'macos'):
Download and install the latest version or Dismiss
% else:
Update or Dismiss
@@ -350,7 +350,7 @@ ${next.modalIncludes()}
msg += 'Update your Docker container or Dismiss';
} else if (result.install_type === 'snap') {
msg += 'Update your Snap package or Dismiss';
- } else if (result.install_type === 'macos') {
+ } else if (result.install_type === 'windows' || result.install_type === 'macos') {
msg += 'Download and install the latest version or Dismiss'
} else {
msg += 'Update or Dismiss';
diff --git a/data/interfaces/default/settings.html b/data/interfaces/default/settings.html
index 2165cf68..3a60891a 100644
--- a/data/interfaces/default/settings.html
+++ b/data/interfaces/default/settings.html
@@ -220,7 +220,7 @@
Check for Tautulli updates periodically.
- % if not plexpy.SNAP and not (plexpy.FROZEN and common.PLATFORM == 'Darwin'):
+ % if not plexpy.SNAP and not plexpy.FROZEN: