X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/c38cfacc4f2cdb7a9e702d0b7b46978089413677..aae8a623a8d2fbc6edf6cfc5f070c161084f37be:/apps/waiter/views.py diff --git a/apps/waiter/views.py b/apps/waiter/views.py index 6e076b306..b951cc4c8 100644 --- a/apps/waiter/views.py +++ b/apps/waiter/views.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# from os.path import join from waiter.models import WaitedFile from waiter.settings import WAITER_URL @@ -13,8 +17,6 @@ def wait(request, path): else: file_url = "" waiting = get_object_or_404(WaitedFile, path=path) - if waiting.is_stale(): - waiting = None if request.is_ajax(): return HttpResponse(file_url)