Skip to content

Commit

Permalink
fix: triage #29
Browse files Browse the repository at this point in the history
  • Loading branch information
hizumiaoba committed Nov 21, 2021
1 parent eb59647 commit afae73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/ranfa/lib/EstimateAlbumTypeCycle.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static String getCurrentCycle() {
}

private static String cycling(String currentType, int times) {
int cyclingDelta = times % 3;
int cyclingDelta = (times / 14) % 3;
String[] typeArray = {
ALBUM_A,
ALBUM_B,
Expand Down

0 comments on commit afae73b

Please sign in to comment.