We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4a0301 commit 0f46626Copy full SHA for 0f46626
dlna.py
@@ -730,7 +730,7 @@ def send_browse_response(self):
730
html = f"""<!DOCTYPE html>
731
<html>
732
<head>
733
- <title>{SERVER_DESCRIPTION}</title>
+ <title>{self.server_name}</title>
734
<style>
735
body {{ font-family: Arial, sans-serif; margin: 40px; }}
736
.breadcrumb {{ display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin-bottom: 20px; }}
@@ -749,7 +749,7 @@ def send_browse_response(self):
749
</style>
750
</head>
751
<body>
752
- <h1>{SERVER_DESCRIPTION}</h1>
+ <h1>{self.server_name}</h1>
753
754
<ul class="breadcrumb">
755
"""
0 commit comments