fix: deep links when using the beta timeline

This commit is contained in:
bwees
2025-07-23 14:29:32 -05:00
parent f27bdf7523
commit 9ed3bbf12f
7 changed files with 211 additions and 35 deletions
@@ -13,6 +13,10 @@ class DriftMemoryService {
return _repository.getAll(ownerId);
}
Future<DriftMemory?> get(String memoryId) {
return _repository.get(memoryId);
}
Future<int> getCount() {
return _repository.getCount();
}