Merge pull request #1059 from croneter/fix-regex

Fix a couple of issues with music when using direct paths: correctly escape music paths for Kodi regex matching
This commit is contained in:
croneter 2019-11-14 17:21:13 +01:00 committed by GitHub
commit aff0fd7a5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, unicode_literals
from logging import getLogger
import re
from .plex_api.media import Media
from . import utils
@ -85,7 +86,7 @@ def _turn_to_regex(path):
else:
if not path.endswith('\\'):
path = '%s\\' % path
# Need to escape backslashes
path = path.replace('\\', '\\\\')
# Escape all characters that could cause problems
path = re.escape(path)
# Beginning of path only needs to be similar
return '^%s' % path