You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a possible solution for this. In apps/media/js/collection.js around line 181 is the following line:
newRow.find('td.title a').text(song.name);
replace it with the following and then it displays the apostrophe correctly
newRow.find('td.title a').html(song.name).text();
This line appears in other places within the code as well and probably should be fixed. I don't know if this is the best solution or not, probably parsing song.name when it is parsed after the json success would be a better choice, but this was quick and easy.
If you have a mp3 / ogg file with non ascii char in them,
the media app will display escaped char instead of the char istelf.
In the DB the escape version is storred ... it may be the problem.
EX :
L'ambitieuse Is displayed as L'ambitieuse
The problem can also be related to owncloud/core#150
The problem occures in OC 4.5 and in master
Originally reported by @eMerzh at owncloud-archive/apps#135
The text was updated successfully, but these errors were encountered: