AV-98-fork

A fork of https://tildegit.org/solderpunk/AV-98
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 129c56c1d432be53e6d3d25e7f94822267440e77
parent ba0f707669e5bdf8b9470f3cb758132fef2b788a
Author: Solderpunk <solderpunk@sdf.org>
Date:   Thu,  3 Sep 2020 21:21:04 +0200

Fix another hasty cache hack bug.

Diffstat:
Mav98.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/av98.py b/av98.py @@ -528,10 +528,10 @@ you'll be able to transparently follow links to Gopherspace!""") # Maintain cache and log if self.options["cache"]: - self._add_to_cache(gi.url, mime, tmpf.name) + self._add_to_cache(gi.url, mime, self.tmp_filename) self._log_visit(gi, address, size) - return gi, mime, body, tmpf + return gi, mime, body, self.tmp_filename def _send_request(self, gi): """Send a selector to a given host and port.