decided to check out the source code too.
the problem is in the file lib/rb-file-helpers.c in the function
const char *
rb_music_dir (void)
{
        const char *dir;
        dir = g_get_user_special_dir (G_USER_DIRECTORY_MUSIC);
        if (dir == NULL) {
                dir = getenv ("HOME");
                if (dir == NULL) {
                        dir = "/tmp";
                }
        }
        rb_debug ("user music dir: %s", dir);
        return dir;
}

it returns dir when it should return basically file://dir. i made the
change and it works correctly

-- 
Songs that have a space in their path are not imported automatically from 
watched music folders
https://bugs.launchpad.net/bugs/147883
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Reply via email to