twigs/app
William Brawner 2a7d674204 Fix monthly recurring transactions not being created when the year changes
The previous implementation only checked that at least one month had passed between the last run date and now by subtracting the ordinal values. If it were February (month 2) and the previous run date were in January (month 1), then 2 - 1 would equal 1, so it would have been one month since the previous run and we would create the recurring transaction. If it were December however (month 12), the following month would be January (month 1), and 1 - 12 would be -11, so it would appear that we had already created a transaction 11 months in the future. The new implementation also takes the year into account to avoid this situation.
2022-02-02 21:21:20 -07:00
..
src Fix monthly recurring transactions not being created when the year changes 2022-02-02 21:21:20 -07:00
.gitignore Rename api module to app 2021-07-28 18:49:48 -06:00
build.gradle.kts Bump all dependencies 2021-12-18 07:18:52 -07:00