0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 11:48:54 +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; return fetch.valid;
if((fetch.valid = fetch.row.valid(key))) if((fetch.valid = fetch.row.valid(key)))
{
assign(event, fetch.row, key); assign(event, fetch.row, key);
event.source = {};
}
return fetch.valid; return fetch.valid;
} }