diff options
Diffstat (limited to 'src/constants.ts')
-rw-r--r-- | src/constants.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/constants.ts b/src/constants.ts index 52c104c..6c5c1c5 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -47,7 +47,8 @@ async function fetchGithubApi(method: string, route: string, headers?: any, json }, headers), } ) - } catch { + } catch (err) { + console.log('bruh, errored', err) // if there's an error, wait a second and try again await new Promise((resolve) => setTimeout(resolve, 1000)) return await fetchGithubApi(method, route, headers, json) @@ -86,6 +87,7 @@ function fetchFile(path: string): Promise<GithubFile> { }, ) const data = await r.json() + console.log('ok github api returned') const file = { path: data.path, |