mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Fixed encoding errors on import
This commit is contained in:
parent
1f46b3a85d
commit
29cd3de86e
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ class ImportEQBeats extends Command
|
|||
->insert([
|
||||
'track_id' => $result->getResponse()['id'],
|
||||
'path' => $file->getRelativePath(),
|
||||
'filename' => $file->getFilename(),
|
||||
'filename' => iconv("UTF-8", "ISO-8859-1//TRANSLIT", $file->getFilename()),
|
||||
'extension' => $file->getExtension(),
|
||||
'imported_at' => Carbon::now(),
|
||||
'parsed_tags' => json_encode($parsedTags),
|
||||
|
|
Loading…
Reference in a new issue