ChromaticMind

Results 16 comments of ChromaticMind

hey @microdesign, How did you solve this? I have the exact same issue. after `$token = JWTAuth::fromUser($user);` when I do `dd(JWTAuth::getToken());` it returns `false`. This is part of an API...

Hey! Yes that is precisely the problem @microdesign. I need `JWTAuth:: getToken();` to return the correct token. I am doing this $user = User::find($id); *$token = JWTAuth::fromUser($user); JWTAuth::setToken($token);* dd(JWTAuth::getToken()); setToken...

Hey I got this working and load times are much better. However, seekTo no longer works! Did you have this issue too? Any solutions? Many thanks!

Well if @Mokto has re-written the Objective-C to upgrade the programming logic, then perhaps we should merge in the code and consolidate the two plugins into one better plugin that...

Hi @BuddyLReno, Here is my code ``` createMusicControls() { this.musicControls.create({ track : track.name, artist : track.artist.name, cover : track.image, isPlaying : true, dismissable : true, // hide previous/next/close buttons: hasPrev...

Hi @BuddyLReno, The code snippet I posted was part of a large piece of code that I am unable to publish publicly. Anyway, that same piece of code works fine...

Ok it works! Cool thanks for that test.. what else can it be about my build that is causing an issue? Perhaps a conflicting plugin? see my list below ```...

Here is all the relevant code that I can share as well in case that helps ``` createMusicControls() { this._musicControls.create({ track : this._track.name, artist : this._track.artist.name, cover : this._track.image, isPlaying...