X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Flib%2Fhttp.py;h=949b306f1f651c8ac3429d0de3dbaa0ba9658861;hb=37dd60538984a3917354b794a5c96b0a025f8e95;hp=d66b6b793a182fb8abc1191de48995f23621b2d0;hpb=8676187ab0172bf6c96840914e4b810860a0a69f;p=mpd-sima.git diff --git a/sima/lib/http.py b/sima/lib/http.py index d66b6b7..949b306 100644 --- a/sima/lib/http.py +++ b/sima/lib/http.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2014-2015 Jack Kaliko +# Copyright (c) 2014-2015, 2020 kaliko # Copyright (c) 2012, 2013 Eric Larson # # This program is free software: you can redistribute it and/or modify @@ -232,7 +232,7 @@ class CacheController(object): self.cache.set(cache_url, resp) # Force one month max age if no Cache-Control header is found # Overriding header disappearance on LastFM web service... - # https://getsatisfaction.com/lastfm/topics/-web-api-http-cache-control-header + # https://gitlab.com/kaliko/sima/-/issues/7 elif CacheController.CACHE_ANYWAY: resp.headers['Cache-Control'] = 'max-age=2419200' self.cache.set(cache_url, resp)