-
Notifications
You must be signed in to change notification settings - Fork 661
New issue
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
Horizon Page Open + redirect()->back() #639
Comments
Can you post your entire |
It is actually not much.. Route::get('/test/redirect-bug', function() {
dd(redirect()->back());
});
Route::get('/test/empty', function() {
return view('empty');
}); I try to visit /test/empty without having horizon open in a browser tab, and it works fine. |
The problem might be in the |
I can't reproduce this. Something tells me that there's still something missing here. Can you first please try one of the support channels below? If you can actually identify this as a bug, feel free to report back and I'll gladly help you out and re-open this issue. Thanks! |
@driesvints I was able to reproduce this;
This will return |
Exactly my thoughts on the session and AJAX thing 👍 |
@SDekkers hmm indeed. I can see the horizon routes there. |
Description:
redirect()->back()
is giving me "302 Found" to random horizon routes:Such as
... Redirecting to horizon/api/workload ...
... Redirecting to horizon/api/stats ...
When I have the horizon tab open in my browser, this happens to all tabs in short times.
Steps To Reproduce:
Note
I am unsure if it's the default wanted behavior, if so, how can I evade this?
Thanks.
The text was updated successfully, but these errors were encountered: