mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-31 12:00:08 -07:00
Sanitize sync row items.
This commit is contained in:
parent
cc9d09bd54
commit
1fb7473dc5
1 changed files with 6 additions and 6 deletions
|
@ -342,13 +342,13 @@ class PlexTV(object):
|
||||||
|
|
||||||
rating_key = clean_uri.rpartition('%2F')[-1]
|
rating_key = clean_uri.rpartition('%2F')[-1]
|
||||||
|
|
||||||
sync_details = {"device_name": device_name,
|
sync_details = {"device_name": helpers.sanitize(device_name),
|
||||||
"platform": device_platform,
|
"platform": helpers.sanitize(device_platform),
|
||||||
"username": device_username,
|
"username": helpers.sanitize(device_username),
|
||||||
"friendly_name": device_friendly_name,
|
"friendly_name": helpers.sanitize(device_friendly_name),
|
||||||
"user_id": device_user_id,
|
"user_id": device_user_id,
|
||||||
"root_title": sync_root_title,
|
"root_title": helpers.sanitize(sync_root_title),
|
||||||
"title": sync_title,
|
"title": helpers.sanitize(sync_title),
|
||||||
"metadata_type": sync_metadata_type,
|
"metadata_type": sync_metadata_type,
|
||||||
"content_type": sync_content_type,
|
"content_type": sync_content_type,
|
||||||
"rating_key": rating_key,
|
"rating_key": rating_key,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue