Add additional group update validations during export.

This commit is contained in:
Greyson Parrelli
2025-10-30 11:34:22 -04:00
committed by Michelle Tang
parent 8ac0c42f44
commit 4a61e45fba

View File

@@ -47,6 +47,10 @@ object ExportSkips {
return log(sentTimestamp, "Group update record is parseable, but has no updates.")
}
fun groupUpdateHasInvalidAuthor(sentTimestamp: Long): String {
return log(sentTimestamp, "Group update has an invalid author.")
}
fun directStoryReplyHasNoBody(sentTimestamp: Long): String {
return log(sentTimestamp, "Direct story reply has no body.")
}