fix: correct Schedule class reference in NotifyReceiver

- Change DatabaseSchema.Schedule to Schedule (same package, no prefix needed)
- Fixes compilation error: Unresolved reference: DatabaseSchema

Since both NotifyReceiver.kt and DatabaseSchema.kt are in the same
package (com.timesafari.dailynotification), Schedule can be referenced
directly without the DatabaseSchema prefix.
This commit is contained in:
Matthew Raymer
2025-12-30 08:18:36 +00:00
parent 6ac7b35566
commit 9655fa10f8

View File

@@ -421,7 +421,7 @@ class NotifyReceiver : BroadcastReceiver() {
} else { } else {
// Create new schedule entry for rollover scenarios // Create new schedule entry for rollover scenarios
// This ensures getNotificationStatus() can find the schedule // This ensures getNotificationStatus() can find the schedule
val newSchedule = DatabaseSchema.Schedule( val newSchedule = Schedule(
id = stableScheduleId, id = stableScheduleId,
kind = "notify", kind = "notify",
cron = cronExpression, cron = cronExpression,