0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-24 12:58:21 +02:00

ircd:Ⓜ️:event::fetch: Clear source on subsequent valid row seek().

This commit is contained in:
Jason Volk 2019-01-16 17:53:24 -08:00
parent 47cf369739
commit 147ec1763b

View file

@ -1568,7 +1568,10 @@ ircd::m::seek(event::fetch &fetch,
return fetch.valid;
if((fetch.valid = fetch.row.valid(key)))
{
assign(event, fetch.row, key);
event.source = {};
}
return fetch.valid;
}