Fix compilation with Nim 1.4.8

このコミットが含まれているのは:
Zed 2022-01-23 14:47:13 +01:00
コミット 4ffe7d7665
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -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: