We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just installed package and complement for AI powered solution. When I create an issue to test it I get :
I had to change the links function like this to make it work for me:
public function links(): array { $rawText = Str::finish($this->rawText, 'ENDLINKS'); $textLinks = $this->between('LINKS', 'ENDLINKS', $rawText); $textLinks = explode(PHP_EOL, $textLinks); $links = []; foreach ($textLinks as $textLink) { $textLink = str_replace('\\', '\\\\', $textLink); $textLink = str_replace('\\\\\\', '\\\\', $textLink); $decodedLink = json_decode($textLink, true); if ($decodedLink !== null) { $links[$decodedLink['title']] = $decodedLink['url']; } } return $links; }
When I install the package in my project and use it with AI powered
1.0
8.2.14
11.14
Windows
No response
The text was updated successfully, but these errors were encountered:
I'd accept a PR that fixes this.
Sorry, something went wrong.
Isn't that already resolved by spatie/error-solutions#9?
Successfully merging a pull request may close this issue.
What happened?
I just installed package and complement for AI powered solution. When I create an issue to test it I get :
I had to change the links function like this to make it work for me:
How to reproduce the bug
When I install the package in my project and use it with AI powered
Package Version
1.0
PHP Version
8.2.14
Laravel Version
11.14
Which operating systems does with happen with?
Windows
Notes
No response
The text was updated successfully, but these errors were encountered: