Do

Comment 8 for bug 316992

Revision history for this message
Stijn Polfliet (stijn-polfliet) wrote :

I have the same problem, I am running the latest bazaar version of gnome-do and of gnome-do-plugins.

It seems to me that the problem is on line 159 of IndexedFolderCollection.cs and that GetDefaultFolders ().ToDictionary (pair => pair.Path); for some reason isn't working.

I could get it to work by changing the previous statement to:
Folders = new Dictionary<string, IndexedFolder>();
foreach( IndexedFolder f in GetDefaultFolders())
  if(!Folders.ContainsKey(f.Path))
    Folders.Add(f.Path, f);

Can this be of any help?