prog-24
prog-24
I found the issue after some investigation. Lines 56-65 in `ElasticquentCollectionTrait` ``` $chunkingResult = $this->chunk(static::$entriesToSendToElasticSearchInOneGo, function ($collectionChunk) use ($result) { $params = array(); foreach ($collectionChunk as $item) { $params['body'][] =...
@raketbizdev did you run full tests on your update?
I am happy to contribute to updates on a new fork. @hakobyansen
You can make the calls individually as a work around. So instead of: `$this->auth_user->entrustCan([PERM_A, PERM_B]);` you can do `$this->auth_user->entrustCan(PERM_B);` `$this->auth_user->entrustCan(PERM_A);`
I may have figured this out, try removing aot and build optimizer from your angular.json. I am not sure why it does not work with those options but it was...
This is still a bug
I have a solution using patches. Here it is. ``` diff --git a/node_modules/react-native-settings/android/build.gradle b/node_modules/react-native-settings/android/build.gradle index 6f8e7d0..9c98885 100644 --- a/node_modules/react-native-settings/android/build.gradle +++ b/node_modules/react-native-settings/android/build.gradle @@ -1,14 +1,17 @@ buildscript { repositories { google()...
> Hi all 👋 I'd be happy to accept a PR for this and ship a new version is this is working for people Happy to open a PR
> > I have a solution using patches. Here it is. > > ``` > > diff --git a/node_modules/react-native-settings/android/build.gradle b/node_modules/react-native-settings/android/build.gradle > > index 6f8e7d0..9c98885 100644 > > --- a/node_modules/react-native-settings/android/build.gradle >...