v1tzor / TimePlanner

Mobile app for planning tasks for the day with multimodule architecture, MVI, Compose, Room, Voyager, AlarmManager, Notification, Charts
Apache License 2.0
429 stars 48 forks source link

The app crashed when I click "Analytics" bottom button. #93

Open Jeffyang2017 opened 11 months ago

Jeffyang2017 commented 11 months ago

see screen shotScreenshot_2023-12-18-16-52-56-882_com.miui.thirdappassistant.jpg

Ethan-20 commented 8 months ago

That's because of this : ru/aleshin/features/analytics/impl/presenatiton/ui/views/PlanningAnalyticsSection.kt:151 ; The reporter's phone is using Chinese as language , therefore the string of month has only two chars: "x月", however, the developer didn't take this into consideration and wrote this : text = monthFormat.format(monthAnalytics[0].date).substring(0, 3) which causes index out of bound.