Commit 2c70251d authored by Max Kellermann's avatar Max Kellermann

db/UpdateGlue: relax assertion

Fixes assertion failure when update gets launched during MPD startup.
parent d380db25
......@@ -77,7 +77,7 @@ UpdateService::Task(void *ctx)
void
UpdateService::StartThread(UpdateQueueItem &&i)
{
assert(GetEventLoop().IsInside());
assert(GetEventLoop().IsInsideOrNull());
progress = UPDATE_PROGRESS_RUNNING;
modified = false;
......@@ -104,7 +104,7 @@ UpdateService::GenerateId()
unsigned
UpdateService::Enqueue(const char *path, bool discard)
{
assert(GetEventLoop().IsInside());
assert(GetEventLoop().IsInsideOrNull());
if (progress != UPDATE_PROGRESS_IDLE) {
const unsigned id = GenerateId();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment