Skip to content
This repository has been archived by the owner. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/src/main/java/hotchemi/android/rate/AppRate.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static boolean showRateDialogIfMeetsConditions(Activity activity) {
}

private static boolean isOverDate(long targetDate, int threshold) {

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess changing the type of second argument as long is simpler solution, what do you think?

@yuna-yano yuna-yano Feb 20, 2018

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for review.
That's good! I will fix that way.

return new Date().getTime() - targetDate >= threshold * 24 * 60 * 60 * 1000;
return new Date().getTime() - targetDate >= (long)threshold * 24 * 60 * 60 * 1000;
}

public AppRate setLaunchTimes(int launchTimes) {
Expand Down