Update DBMerger

This commit is contained in:
Natsumi
2025-11-20 21:08:13 +11:00
parent 39a8685f0d
commit 2a950abe1c
2 changed files with 7 additions and 7 deletions

View File

@@ -257,10 +257,8 @@ namespace DBMerger
private void MergeUsers()
{
MergeTable(
table => userIDRegex.IsMatch(table)
&& !table.EndsWith("_avatar_history")
&& (table.EndsWith("_notifications")
|| table.EndsWith("_moderation")),
table => userIDRegex.IsMatch(table) &&
(table.EndsWith("_notifications") || table.EndsWith("_moderation")),
[0],
(old, existing) =>
{
@@ -339,7 +337,9 @@ namespace DBMerger
i--;
// Skip friend log current for obvious reasons
if (table.EndsWith("_friend_log_current"))
// Skip notes and mutual friends since they aren't time based
if (table.EndsWith("_friend_log_current") || table.EndsWith("_notes") ||
table.EndsWith("_mutual_graph_friends") || table.EndsWith("_mutual_graph_links"))
{
continue;
}