Fix a typo that prevented tilecombines from being split.
Change-Id: Iceecfcff3b547485a94a0b9ac356d634505ccbb4
This commit is contained in:
parent
89ee9fd94b
commit
137e677eb0
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ void TileQueue::put_impl(const Payload& value)
|
|||
Log::trace() << "After canceltiles have " << _queue.size() << " in queue." << Log::end;
|
||||
return;
|
||||
}
|
||||
else if (msg.compare(0, 10, "tilecombine") == 0)
|
||||
else if (msg.compare(0, 11, "tilecombine") == 0)
|
||||
{
|
||||
// Breakup tilecombine and deduplicate.
|
||||
const auto tileCombined = TileCombined::parse(msg);
|
||||
|
|
Loading…
Reference in a new issue