Jonathan Puckey

Results 31 issues of Jonathan Puckey

For testing purposes, I need to reset the values set by ImmortalDB. Currently I am doing the following to achieve this, but it would be great if the library offered...

## Issue When I display an Interstitial in the iOS RNGoogleMobileAdsExample example app on my phone (iPhone SE), I see the following warning in the output: > 2022-05-09 14:32:51.757814+0200 RNGoogleMobileAdsExample[480:45469]...

bug
help wanted
workflow: needs review

I noticed that setVolume does not work when my iPhone (iOS 13.5) is connected to an airplay device.

this pr changes the signature of iCloudStorage.multiSet to match that of AsyncStorage: https://reactnative.dev/docs/asyncstorage#multiset

I was able to reproduce the issue I mentioned in https://github.com/ditojs/dito/commit/ab6e4e4b6f8678b752bbd29b25c6bd80ebf990b9 here: https://github.com/puckey/dito-example/tree/reproduce/tab-error Go to /admin/dummies/1 and then click on the edit button of one of the messages. it produces...

- `env` could default to `process.env.NODE_ENV` when not supplied - `server.host` could default to `env.NODE_HOST || env.HOST || '0.0.0.0'` when not supplied - `server.port` could default to `env.NODE_PORT || env.PORT...

When creating migrations, the tables always include `#id` and `#ref` columns: ```js export async function up(knex) { await knex.schema .createTable('channel', table => { table.increments('id').primary() table.string('#id') table.string('#ref') }) } export async...

According to RNTP docs we have two states for player loading: `State.Connecting` & `State.Buffering`: - `State.Connecting` indicates that the player is currently buffering (in "play" state) - `State.Buffering` indicates that...

Bug
Platform: Android
Platform: iOS

- fixes #1688 - adds string values to State enum. These values are identical to those on iOS - emits them as string from `MusicEvents.PLAYBACK_STATE` - returns them as string...