Parcourir la source

Fix compilation with Nim 1.4.8

Zed il y a 4 ans
Parent
commit
4ffe7d7665
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/apiutils.nim

+ 1 - 1
src/apiutils.nim

@@ -61,7 +61,7 @@ template fetchImpl(result, fetchBody) {.dirty.} =
   try:
     var resp: AsyncResponse
     pool.use(genHeaders(token)):
-      resp = await c.get(url)
+      resp = await c.get($url)
       result = await resp.body
 
       if resp.status == $Http503: