Benedikt Hirmer
Benedikt Hirmer
I found an issue with the displayCount not updating properly. The issue has been fixed in the second commit. `displayCount` needs to be updated when setting calling `setConfig:`
I was reading @george43g 's other [article](https://medium.com/swlh/a-toolkit-to-speed-up-and-optimise-firebase-cloud-functions-part-1-6f74f278660c) on the subject too and tried to append the proposed `func` suffix to the TS files, e.g. `on-create.func.ts`. It didn't help though. The...
After applying the fix from #11 and inserting `admin.initializeApp(functions.config().firebase);` at the top of `index.ts` it seems to be working! I'm not sure why `initializeApp` was needed since I used the...
Same for esbuild in our case. The issue appeared in since 4.1.0 and still occurs with 5.1.1 ``` const resolveFfmpegPlugin = { name: 'resolveFfmpeg', setup(build) { build.onResolve({ filter: /lib-cov\/fluent-ffmpeg/ },...
@bakermanbrian Were you able to make any progress? Followed steps of option 1 and the sign-in link keeps pointing to `my-app.firebaseapp.com` instead of `mydomain.com`
> This seems related to a new feature released about a week ago. Downgrading the Firebase Functions SDK can give you a workaround. To help me diagnose: > > 1....
@jttaynton-chattr Thanks for the hint! Upgrading to 4.8.1 resolved the issue indeed. Execution time went down to level where it was supposed to be. No error's been thrown in the...
@sercanersoy Thank you! We used to have `ig.state.generateDevice` before deserializing the cookie. After upgrading the library, this results in the login not working anymore if the session cookie cannot be...
Hitting this issue too. Did you find any any workaround @volkerp ?
@j4velin Here's how I made it work: ```javascript const modifyLoginUI = () => { const emailInputField = document.getElementById('ui-sign-in-email-input'); const userEmail = 'user@email' if (userEmail && userEmail !== undefined) { emailInputField?.setAttribute('value',...