tFetch 48h_NNN instead of recent_NNN. - gopherbay - A Gopher interface to The Pirate Bay
 (HTM) git clone https://git.parazyd.org/gopherbay
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit d5e6f1e92478d491890199f357f59f32892014bf
 (DIR) parent b90d9097ceffc36dc1381b86c24da8d3bfe39eed
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Wed, 11 Nov 2020 21:37:06 +0100
       
       Fetch 48h_NNN instead of recent_NNN.
       
       Diffstat:
         M q.dcgi                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/q.dcgi b/q.dcgi
       t@@ -116,7 +116,7 @@ def q(_argv):
            if query[0:10] == "top100:all":
                data = httpget(server + "/precompiled/data_top100_all.json")
            elif query[0:14] == "top100:recent_":
       -        data = httpget(server + "/precompiled/data_top100_recent_" + query[14:] + ".json")
       +        data = httpget(server + "/precompiled/data_top100_48h_" + query[14:] + ".json")
            elif query[0:13] == "top100:recent":
                data = httpget(server + "/precompiled/data_top100_recent.json")
            elif query[0:7] == "top100:":