Skip to content

Commit

Permalink
hotfix for blurring exception
Browse files Browse the repository at this point in the history
  • Loading branch information
sualfred committed Apr 14, 2021
1 parent e4e9073 commit 1679a64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.embuary.helper" name="Embuary Helper" version="2.0.7" provider-name="sualfred">
<addon id="script.embuary.helper" name="Embuary Helper" version="2.0.8" provider-name="sualfred">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.pil" version="1.1.7"/>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/service_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def start(self):
'''
if condition('Skin.HasSetting(BlurEnabled)'):
radius = xbmc.getInfoLabel('Skin.String(BlurRadius)') or ADDON.getSetting('blur_radius')
saturation = xbmc.getInfoLabel('Skin.String(BlurSaturation)')
saturation = xbmc.getInfoLabel('Skin.String(BlurSaturation)') or '1.0'
ImageBlur(radius=radius, saturation=saturation)

''' Refresh widgets
Expand Down

0 comments on commit 1679a64

Please sign in to comment.