Skip to content

Commit 0081eb0

Browse files
committed
Adding rss decoding
1 parent 47e189d commit 0081eb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python-lib/dku_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def extract_key_using_json_path(json_dictionary, json_path):
126126
def is_reponse_xml(response):
127127
content_types = response.headers.get("Content-Type", "").split(";")
128128
for content_type in content_types:
129-
if content_type in ["text/xml", "application/soap+xml", "application/xml", "application/atom+xml"]:
129+
if content_type in ["text/xml", "application/soap+xml", "application/xml", "application/atom+xml", "application/rss+xml"]:
130130
return True
131131
return False
132132

0 commit comments

Comments
 (0)