1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-03 01:43:12 +02:00

Don't re-order mtags on history playback

Strictly, this is not a problem, but.. for our test framework it is better
and it looks cleaner too.
This commit is contained in:
Bram Matthys
2019-07-13 08:20:12 +02:00
parent 65b5e21464
commit ccfeac6eae
+1 -1
View File
@@ -136,7 +136,7 @@ void hbm_duplicate_mtags(HistoryLogLine *l, MessageTag *m)
for (; m; m = m->next)
{
n = duplicate_mtag(m);
AddListItem(n, l->mtags);
AppendListItem(n, l->mtags);
}
n = find_mtag(l->mtags, "time");
if (!n)