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:
César Pinto Castillo
2016-04-22 11:02:16 +02:00
parent 8d5ae9e3d5
commit 6b8e8915ea

View File

@@ -1134,7 +1134,7 @@ public class Manager : ArmchairManager {
}
private func showsRemindButton() -> Bool {
return (remindButtonTitle != nil)
return (daysBeforeReminding > 0 && remindButtonTitle != nil)
}
private func showRatingAlert() {