
Amarok 2 Android remote Fix
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
9 years ago
Add Files to Playlist.
quick Play Now.
pxc
9 years ago
I was able to get some things done, but I felt my understanding of what I was supposed to do would be better if I could see the source of the Android client, as well. The source is missing from the maintainer's website, and when I emailed him asking for it, I never got a response.
If you don't mind, could you describe what you had to change and why? (I'll of course also compare the two versions of amarokfunc.js.)
Again, thank you!
Report
xyzwqt
9 years ago
SELECT rpath FROM urls LEFT JOIN tracks ON urls.id = tracks.url WHERE tracks.id = '+trackId+';'
With this other part that we need to make the first an absolute path.
SELECT lastmountpoint FROM devices LEFT JOIN (urls LEFT JOIN tracks ON urls.id = tracks.url) ON devices.id = urls.deviceid WHERE tracks.id = '+trackId+';'
Concatenate and we have the absolute path.
Now you can call to Amarok.Playlist.addMedia without problems.
Sorry for my English.
Report