Catch the missing table exception when they have a new DB

pull/42/head
Jamie Rees 9 years ago
parent 2786d13a17
commit 3c6338cadc

@ -24,6 +24,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// ************************************************************************/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
@ -70,19 +72,30 @@ namespace PlexRequests.Core
private void MigrateDb() // TODO: Remove when no longer needed
{
var result = new List<long>();
RequestedModel[] requestedModels;
var repo = new GenericRepository<RequestedModel>(Db);
try
{
var records = repo.GetAll();
var requestedModels = records as RequestedModel[] ?? records.ToArray();
requestedModels = records as RequestedModel[] ?? records.ToArray();
if (!requestedModels.Any())
{ return; }
var jsonRepo = new JsonRequestService(new RequestJsonRepository(Db, new MemoryCacheProvider()));
var result = new List<long>();
foreach (var r in requestedModels)
{
var id = jsonRepo.AddRequest(r);
result.Add(id);
}
}
catch (SqliteException)
{
// There is no requested table so they do not have an old version of the DB
return;
}
if (result.Any(x => x == -1))
{

Loading…
Cancel
Save