summaryrefslogtreecommitdiff
path: root/backend/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/views.py')
-rw-r--r--backend/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/views.py b/backend/views.py
index e610bbd..992b273 100644
--- a/backend/views.py
+++ b/backend/views.py
@@ -52,7 +52,7 @@ BANDCAMP_API_URL = "http://api.bandcamp.com/api/url/1/info?key="+BANDCAMP_KEY+"&
BANDCAMP_API_BAND = "http://api.bandcamp.com/api/band/3/discography?key="+BANDCAMP_KEY+"&band_id="
BANDCAMP_API_ALBUM = "http://api.bandcamp.com/api/album/2/info?key="+BANDCAMP_KEY+"&album_id="
BANDCAMP_API_TRACK = "http://api.bandcamp.com/api/track/1/info?key="+BANDCAMP_KEY+"&track_id="
-DEFAULT_BG = "http://scannerjammer.com/bgz/gridzy9.jpg"
+DEFAULT_BG = "http://scannerjammer.fm/bgz/gridzy9.jpg"
#
# Common funtions
@@ -1109,7 +1109,7 @@ def stats(request):
def redirect(request):
""" Permanent redirect
"""
- response = HttpResponsePermanentRedirect(redirect_to='http://scannerjammer.com')
+ response = HttpResponsePermanentRedirect(redirect_to='http://scannerjammer.fm')
template = loader.get_template('redirect.html')
response.write(template.render(Context()))
return response