Commit Diff


commit - 321ea045f067bea4b30421897082ccd0ea25bbb2
commit + d1f3d62f6b659fdc88e88effe0ece200ad3bd255
blob - 3726fed82e49d42f025b55778d4c99cced8ff4fc
blob + c3d084b0cedf76f969357169afdbe55e475d215a
--- ui.lisp
+++ ui.lisp
@@ -146,8 +146,8 @@
     (clear-window)
     (render (gemtext:parse-string "# loading...")
             *window-content*)
-    (multiple-value-bind (status body) (gemini:request url)
-      (declare (ignore status))
+    (multiple-value-bind (status meta body) (gemini:request url)
+      (declare (ignore status meta))
       (clear-window)
       (render (gemtext:parse-string body)
               *window-content*))))