Description: PrayerTimes.current returns same value as PrayerTimes.next
Bug details:
If we have a piece of code like:
val prays = PrayerTimes.getTodayPrays(loc, config)
val currentPray = prays.current
val nextPray = prays.next
// Let's assume that actual current pray is Asr and next pray is Maghrib
print(currentPray.type) // prints: MAGHRIB
print(nextPray.type) // prints: MAGHRIB
it prints the next pray not the current pray as I performed a test but found that both field getters return the same pray
Bug report
If we have a piece of code like:
it prints the next pray not the current pray as I performed a test but found that both field getters return the same pray