diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-01-05 12:48:55 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2014-01-05 12:48:55 +0100 |
commit | 25c271af32dcd65246f2a32b6e020d00a1445cee (patch) | |
tree | 5c7175450bb98be51d1d06e4fd43be78eba0ab2f /pyload/web | |
parent | try to get colored log on windows working (diff) | |
download | pyload-25c271af32dcd65246f2a32b6e020d00a1445cee.tar.xz |
update multihoster when account updates
Diffstat (limited to 'pyload/web')
-rw-r--r-- | pyload/web/pyload_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/web/pyload_app.py b/pyload/web/pyload_app.py index 32b288e57..bb75fe385 100644 --- a/pyload/web/pyload_app.py +++ b/pyload/web/pyload_app.py @@ -87,7 +87,7 @@ def index(): if resp.status_code == 200: content = resp.body.read() resp.body = template(content, ws=ws, web=web, setup=setup, external=external, prefix=PREFIX) - resp.content_length = len(resp.body) + resp.content_length = len(resp.body) + 1 # these page should not be cached at all resp.headers.append("Cache-Control", "no-cache") |