Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Fix set backup location from backup menu. #127

Open
wants to merge 1 commit into
base: matrix
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/libs/common/config.py
Expand Up @@ -294,7 +294,7 @@ def set_setting(self, key, value, id=xbmcaddon.Addon().getAddonInfo('id')):

def open_settings(self, id=None, cat=None, set=None, activate=False):
offset = [(100, 200), (-100, -80)]
if not id:
if id is not None:
id = self.ADDON_ID

try:
Expand Down