View | Details | Raw Unified | Return to bug 128806
Collapse All | Expand All

(-)SongDatabase.cs.orig (-1 / +3 lines)
Lines 1277-1283 Link Here
1277
        private void LoadOnTheGo () {
1277
        private void LoadOnTheGo () {
1278
            string path = device.MountPoint + "/iPod_Control/iTunes/OTGPlaylistInfo";
1278
            string path = device.MountPoint + "/iPod_Control/iTunes/OTGPlaylistInfo";
1279
1279
1280
            if (!File.Exists (path)) {
1280
            FileInfo finfo = new FileInfo(path);
1281
1282
            if (!finfo.Exists || finfo.Length == 0) {
1281
                // make a blank one
1283
                // make a blank one
1282
                otgPlaylist = new Playlist (this, new Song[0]);
1284
                otgPlaylist = new Playlist (this, new Song[0]);
1283
                return;
1285
                return;

Return to bug 128806