Skip to content

Commit 577ab66

Browse files
authored
Merge pull request #334 from AntennaPod/subscribe-page-texts
Update error texts on subscribe page
2 parents 00a8ad8 + 4338003 commit 577ab66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deeplink/subscribe/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h2 id="podcastTitle">{% t generic.subscribe %}</h2>
1414
<div class="card">
1515
<div class="card-body">
1616
<i class="fa fa-rss mr-1"></i>
17-
<span id="urlTextBox">JavaScript required</span>
17+
<span id="urlTextBox">Error: JavaScript not available</span>
1818
</div>
1919
</div>
2020
</p>
@@ -30,7 +30,7 @@ <h2 id="podcastTitle">{% t generic.subscribe %}</h2>
3030
const subscribeButton = document.getElementById("subscribeButton");
3131
const podcastTitle = document.getElementById("podcastTitle");
3232
if (!urlParams.has("url")) {
33-
urlTextBox.textContent = "URL not available";
33+
urlTextBox.textContent = "Error: URL not provided";
3434
subscribeButton.disabled = true;
3535
subscribeButton.textContent += " (error)";
3636
} else {

0 commit comments

Comments
 (0)