fix: Fix pagination tokens being corrupted for backfilled PDUs

This commit is contained in:
Ginger 2025-09-04 10:33:43 -04:00 committed by nex
commit 16f4efa708
6 changed files with 18 additions and 36 deletions

View file

@ -1,6 +1,10 @@
#![allow(clippy::cast_possible_wrap, clippy::cast_sign_loss, clippy::as_conversions)]
use std::{cmp::Ordering, fmt, fmt::Display, str::FromStr};
use std::{
cmp::Ordering,
fmt::{self, Display},
str::FromStr,
};
use ruma::api::Direction;