mirror of
https://github.com/koel/koel.git
synced 2026-04-26 01:06:00 +03:00
[GH-ISSUE #1081] in /api/me : Call to undefined method Illuminate\Events\Dispatcher::fire() #633
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#633
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bzctoons on GitHub (Sep 13, 2019).
Original GitHub issue: https://github.com/koel/koel/issues/1081
Hey, thanks for contributing to Koel! To save time for both of us, please make sure these checkboxes are checked before submitting the issue:
All checked? Now also make sure your issue
Hello
the error is here :
vendor/tymon/jwt-auth/src/Middleware/BaseMiddleware.php
line 60
v4.0.0.0
The same error on the demo site : https://demo.koel.phanan.net/api/me
Thanks
@payafterwork commented on GitHub (Oct 23, 2019):
I am unable to login, on localhost and also on https://demo.koel.phanan.net/
@phanan commented on GitHub (Oct 23, 2019):
Thanks for reporting.
@bzctoons You can't access demo.koel.phanan.net/api/me directly via GET, so it's not the same error. Also, the error you described doesn't affect the app's functionality.
@payafterwork I don't know what happened, but I've reset the password to 'demo' and it works now.
@merlinux commented on GitHub (Jan 3, 2020):
@bzctoons may be you have a Laravel version where method fire() was replaced by dispatch()
fix as easy as:
// $response = $this->events->fire($event, $payload, true);
$response = $this->events->dispatch($event, $payload, true);
at line 60 in vendor/tymon/jwt-auth/src/Middleware/BaseMiddleware.php
this worked for me using Laravel Framework 5.8.35
cheers!