[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-10-31 Thread LCID Fire
It is fixed with 1.2 - just tried it in Intrepid.

** Changed in: banshee (Ubuntu)
   Status: Incomplete = Fix Released

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-10-30 Thread Andrew Conkling
Reopening bug. If this is an issue, it still is, but we should test.

LCID Fire, can you provide some steps to reproduce? I simply don't know
what you're referring to in this bug.

** Changed in: banshee (Ubuntu)
   Status: Invalid = New

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-10-30 Thread Andrew Conkling
** Changed in: banshee (Ubuntu)
   Status: New = Incomplete

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-10-29 Thread Jonathan Thomas
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to New. Thanks again!

** Changed in: banshee (Ubuntu)
   Status: Incomplete = Invalid

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-09-16 Thread Andrew Conkling
Can you test in the new Banshee? It is available on Intrepid, and on
Hardy via the Banshee PPA: https://launchpad.net/~banshee-team/+archive.

** Changed in: banshee (Ubuntu)
   Status: Confirmed = Incomplete

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2008-01-04 Thread LCID Fire
No, the problem is the File.Delete - not the Directory.Delete

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 158419] Re: Banshee crashes when file/directory is not present

2007-12-05 Thread Pepijn van de Geer
This seems to be fixed as the current code of the stable branch looks
like this:

private void DeleteSong(TrackInfo ti)
{
File.Delete(ti.Uri.LocalPath);

// trim empty parent directories
try {
string old_dir = Path.GetDirectoryName(ti.Uri.LocalPath);
while(old_dir != null  old_dir != String.Empty) {
Directory.Delete(old_dir);
old_dir = Path.GetDirectoryName(old_dir);
}
} catch(Exception) {}
}

-- 
Banshee crashes when file/directory is not present
https://bugs.launchpad.net/bugs/158419
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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