diff --git a/proxy/rss_proxy.py b/proxy/rss_proxy.py
index 47615e4..fe40382 100755
--- a/proxy/rss_proxy.py
+++ b/proxy/rss_proxy.py
@@ -102,7 +102,13 @@ def init_proxy(app):
new_items.append(item_str)
final_items = cached_items + new_items
- response_xml = f'{"".join(final_items)}'
+ response_xml = f"""
+
+ Tapochek.net RSS
+ http://tapochek.net/
+ 15
+ {"".join(final_items)}
+ """
return Response(response_xml, content_type="application/xml; charset=utf-8")