0x55

Results 39 comments of 0x55
trafficstars

For those landing here like me. So it appears that, after a few hours, you will be able to edit your collection on OS _as long as_: 1. You've added...

You just need to have a `public owner()` method on your contract.

@beshup I am not sure. I'm just guessing. That worked for me after a few hours. I did not use `Ownable` from OZ. And the only common ground I have...

> Android, 33 SDK, 5.0.0 released version. > > ```js > OneSignal.initialize('appId'); > console.log(OneSignal.Notifications.hasPermission()); // false > await new Promise(resolve => setTimeout(resolve, 500)); > console.log(OneSignal.Notifications.hasPermission()); // suddenly true > ```...

I think this feature should include all possible special column types. These are the types that don't specify a column name: ```php $table->timestamps(); $table->rememberToken(); $table->softDeletes(); // ... ``` So they...

Hi, I took a different approch in another package: https://github.com/eightyfive/laravel-exodus/blob/master/src/Exodus.php#L118 I basically allow any "special" column types: `id()`, `rememberToken()`, `timestamps()`, `softDeletes()`, etc... Let me know @tabacitu if this is something...

By the way, when no `id` is available, this causes a Web SDK error: ``` ExecutorBase.js:93 n: processSubscriptionModel: missing onesignalId: {"subscribers":{},"modelName":"pushSubscriptions","modelId":"","data":{"type":"ChromePush","token":"https://fcm.googleapis.com/fcm/send/","enabled":true,"notification_types":1,"sdk":"160001","device_model":"MacIntel","device_os":87,"web_auth":"","web_p256":""},"awaitOneSignalIdAvailable":{}} at on (https://cdn.onesignal.com/sdks/web/v16/OneSignalSDK.page.es6.js?v=160001:1:241091) at fn. (https://cdn.onesignal.com/sdks/web/v16/OneSignalSDK.page.es6.js?v=160001:1:243504) at Generator.next ()...

Unfortunately I moved away from this lib due to time constraints. As far as I remember the `id` was never picked up (even with listener).

Or would I need to hook into `CameraRtmpLiveStreamer` instead? I see some [`surfaceCallback`](https://github.com/apivideo/api.video-android-live-stream/blob/main/livestream/src/main/java/video/api/livestream/ApiVideoLiveStream.kt#L120) as well. Would that be useful in this case? Thanks 🙏