mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-03-17 23:14:10 +01:00
Fixes bug related to remind button
The remind button was appearing even though "days before reminding" was set to 0 if the review button title was set.
This commit is contained in:
@@ -1134,7 +1134,7 @@ public class Manager : ArmchairManager {
|
||||
}
|
||||
|
||||
private func showsRemindButton() -> Bool {
|
||||
return (remindButtonTitle != nil)
|
||||
return (daysBeforeReminding > 0 && remindButtonTitle != nil)
|
||||
}
|
||||
|
||||
private func showRatingAlert() {
|
||||
|
||||
Reference in New Issue
Block a user