mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-04-24 01:38:33 +02: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 {
|
private func showsRemindButton() -> Bool {
|
||||||
return (remindButtonTitle != nil)
|
return (daysBeforeReminding > 0 && remindButtonTitle != nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
private func showRatingAlert() {
|
private func showRatingAlert() {
|
||||||
|
|||||||
Reference in New Issue
Block a user