From 4b5f880ccb1ce1f6659b90d61b768ea58da0b280 Mon Sep 17 00:00:00 2001
From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>
Date: Sat, 25 Apr 2020 00:06:13 -0700
Subject: [PATCH] Fix update message on startup for Windows/MacOS
---
data/interfaces/default/base.html | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html
index 63f42ffc..6ee7e5ee 100644
--- a/data/interfaces/default/base.html
+++ b/data/interfaces/default/base.html
@@ -55,8 +55,10 @@
newer version of Tautulli is available!
You are ${plexpy.COMMITS_BEHIND} commit${'s' if plexpy.COMMITS_BEHIND > 1 else ''} behind.
% endif
- % if plexpy.DOCKER:
+ % if plexpy.INSTALL_TYPE == 'docker':
Update your Docker container or Dismiss
+ % elif plexpy.INSTALL_TYPE in ('windows', 'macos'):
+ Download and install the latest version or Dismiss
% else:
Update or Dismiss
% endif