0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 02:18:53 +02:00

ircd:Ⓜ️:room::messages: Adhere to room.event_id in ctor if given.

This commit is contained in:
Jason Volk 2018-06-03 14:50:42 -07:00
parent 9764679804
commit 50835ce7bd

View file

@ -491,7 +491,10 @@ ircd::m::room::messages::messages(const m::room &room,
room.fopts
}
{
seek();
if(room.event_id)
seek(room.event_id);
else
seek();
}
ircd::m::room::messages::messages(const m::room &room,