Normal
ok I noticed that you were calling MusicDatabaseReorg without the settings parameter (which was just calling the overloaded method with settings = null)I have added[code]private MusicDatabaseSettings _settings = new MusicDatabaseSettings();[/code]and changed call to[code]mDB.MusicDatabaseReorg(m_Shares,_settings);[/code]seems to be working ok for me. Can you see any issues with this?
ok I noticed that you were calling MusicDatabaseReorg without the settings parameter (which was just calling the overloaded method with settings = null)
I have added
[code]private MusicDatabaseSettings _settings = new MusicDatabaseSettings();[/code]
and changed call to
[code]mDB.MusicDatabaseReorg(m_Shares,_settings);[/code]
seems to be working ok for me. Can you see any issues with this?