change time hour to minute
parent
d070f16564
commit
90d9fee405
|
@ -96,7 +96,7 @@ public class GlobalDataManaager {
|
|||
long seasonOpenLong = sGlobalSystemConfig.getSeasonOpenLong();
|
||||
long seasonEndLong = sGlobalSystemConfig.getSeasonEndLong();
|
||||
long diffTime = seasonEndLong - seasonOpenLong;
|
||||
int seasonInterval = sGlobalSystemConfig.getSeasonInterval() * 3600*1000;
|
||||
int seasonInterval = sGlobalSystemConfig.getSeasonInterval() * 60*1000;
|
||||
|
||||
long passTims = now - seasonOpenLong;
|
||||
if(passTims>0){
|
||||
|
@ -261,7 +261,7 @@ public class GlobalDataManaager {
|
|||
long systemEndLong = sGlobalSystemConfig.getSystemEndLong();
|
||||
long seasonOpenLong = sGlobalSystemConfig.getSeasonOpenLong();
|
||||
long seasonEndLong = sGlobalSystemConfig.getSeasonEndLong();
|
||||
int seasonInterval = sGlobalSystemConfig.getSeasonInterval() * 3600*1000;
|
||||
int seasonInterval = sGlobalSystemConfig.getSeasonInterval() * 60*1000;
|
||||
long timeOpenOfThis =seasonOpenLong;
|
||||
long timeCloseOfThis =seasonEndLong;
|
||||
if(seasonInterval == 0){
|
||||
|
|
Loading…
Reference in New Issue