mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
Fix: Crash on migation of old instances (Fix #5051)
This commit is contained in:
parent
cdc318c71a
commit
ae432ff237
@ -651,13 +651,6 @@ WHERE cte.""Id""=p.""Id""
|
|||||||
settings1.TargetCurrency = app.StoreData.GetStoreBlob().DefaultCurrency;
|
settings1.TargetCurrency = app.StoreData.GetStoreBlob().DefaultCurrency;
|
||||||
app.SetSettings(settings1);
|
app.SetSettings(settings1);
|
||||||
}
|
}
|
||||||
items = AppService.Parse(settings1.PerksTemplate);
|
|
||||||
newTemplate = AppService.SerializeTemplate(items);
|
|
||||||
if (settings1.PerksTemplate != newTemplate)
|
|
||||||
{
|
|
||||||
settings1.PerksTemplate = newTemplate;
|
|
||||||
app.SetSettings(settings1);
|
|
||||||
};
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PointOfSaleAppType.AppType:
|
case PointOfSaleAppType.AppType:
|
||||||
@ -668,13 +661,6 @@ WHERE cte.""Id""=p.""Id""
|
|||||||
settings2.Currency = app.StoreData.GetStoreBlob().DefaultCurrency;
|
settings2.Currency = app.StoreData.GetStoreBlob().DefaultCurrency;
|
||||||
app.SetSettings(settings2);
|
app.SetSettings(settings2);
|
||||||
}
|
}
|
||||||
items = AppService.Parse(settings2.Template);
|
|
||||||
newTemplate = AppService.SerializeTemplate(items);
|
|
||||||
if (settings2.Template != newTemplate)
|
|
||||||
{
|
|
||||||
settings2.Template = newTemplate;
|
|
||||||
app.SetSettings(settings2);
|
|
||||||
};
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user