chore(frontend): improve comment formatting, fix minor code inconsistencies, and enhance SQLite worker initialization

- Standardized comment formatting across SQLite worker and local DB modules for clarity and consistency.
- Fixed minor typos in comments and removed redundant placeholders.
- Refined SQLite Web Worker initialization logic by aligning method implementations with clean code practices.
- Updated Kotlin code in DB driver factories to handle exceptions concisely and improve robustness during schema initialization.
This commit is contained in:
2026-02-01 12:15:16 +01:00
parent af0b7c5f9b
commit 77c20bf2ba
5 changed files with 114 additions and 116 deletions
@@ -12,9 +12,7 @@ import io.ktor.client.request.parameter
interface SyncableRepository<T : Syncable> {
/**
* Cursor für Delta-Sync.
*
* Konvention: UUIDv7 als String (Backend kann `>` vergleichen) oder ein kompatibler Cursor.
*
* @return letzter bekannter Cursor lokal oder `null`, wenn noch keine Daten existieren.
*/
suspend fun getLatestSince(): String?