diff --git a/resources/lib/PlexAPI.py b/resources/lib/PlexAPI.py
index 146c787d..904066e3 100644
--- a/resources/lib/PlexAPI.py
+++ b/resources/lib/PlexAPI.py
@@ -620,10 +620,10 @@ class PlexAPI():
args=(PMS, queue))
threadQueue.append(t)
- maxThreads = int(settings('imageCacheLimit'))
+ maxThreads = 5
threads = []
# poke PMS, own thread for each PMS
- while(True):
+ while True:
# Remove finished threads
for t in threads:
if not t.isAlive():
diff --git a/resources/lib/initialsetup.py b/resources/lib/initialsetup.py
index 3e5a6ff3..0ceab110 100644
--- a/resources/lib/initialsetup.py
+++ b/resources/lib/initialsetup.py
@@ -466,9 +466,6 @@ class InitialSetup():
# Is your Kodi installed on a low-powered device like a Raspberry Pi?
# If yes, then we will reduce the strain on Kodi to prevent it from
# crashing.
- if dialog.yesno(heading=addonName, line1=lang(39072)):
- log.debug('User thinks that PKC runs on a raspi or similar')
- settings('imageCacheLimit', value='1')
# Make sure that we only ask these questions upon first installation
settings('InstallQuestionsAnswered', value='true')
diff --git a/resources/settings.xml b/resources/settings.xml
index 6e5624be..ab0990fb 100644
--- a/resources/settings.xml
+++ b/resources/settings.xml
@@ -39,7 +39,6 @@
-