Fix typo to actually cache pinned tweets

このコミットが含まれているのは:
Zed 2023-01-20 04:55:56 +01:00
コミット 22b51b414b
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -154,7 +154,7 @@ proc getCachedTweet*(id: int64): Future[Tweet] {.async.} =
tweet.deserialize(Tweet)
else:
result = await getStatus($id)
if result.isNil:
if not result.isNil:
await cache(result)
proc getCachedPhotoRail*(name: string): Future[PhotoRail] {.async.} =