Skip to content

Commit 345e3b6

Browse files
fix: use ollama proxy for Firebase Auth to avoid Deno app limit
1 parent 9f546c7 commit 345e3b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7154,7 +7154,7 @@
71547154
if (_fbIdToken && _fbUid && _fbTokenExpiry - now > 5 * 60 * 1000) return; // still valid
71557155
try {
71567156
const res = await fetch(
7157-
`https://screenoperator-firebase-auth-proxy.android-poweruser.deno.net/v1/accounts:signInAnonymously?key=${FIREBASE_API_KEY}`,
7157+
`https://screenoperator-ollama-proxy.android-poweruser.deno.net/firebase/auth/signInAnonymously?key=${FIREBASE_API_KEY}`,
71587158
{ method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ returnSecureToken: true }) }
71597159
);
71607160
if (!res.ok) {

0 commit comments

Comments
 (0)