johnymarek / tsdemuxer

Automatically exported from code.google.com/p/tsdemuxer
Other
0 stars 0 forks source link

Not working functions "Send playlist" and "Reload feeds" on windows. #21

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. http://<xupnpd_on_win>:4044/ui/playlists
2. select any m3u file
3. click "Send" button

What is the expected output? What do you see instead?
Instead of downloading the file, I get a "Fail".

What version of the product are you using? On what operating system?
xupnpd-1_01 Cygwin version on Windows 7

Please provide any additional information below.
This problem is caused by using the os command "mv" in the file 
ui/xupnpd_ui.lua.
Need replace os.execute (string.format ('mv% s% s', tfname, cfg.playlists_path 
.. fname)) ~ = 0 to os.rename (tfname, cfg.playlists_path .. fname).
It works.
As there is a similar problem when click "Reload feeds" button.
I wrote a patch to fix these problems.

Original issue reported on code.google.com by andr...@mail.ru on 22 Feb 2013 at 9:11

Attachments: