1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

chore: clean up dependencies

This commit is contained in:
Ferdinand Mütsch
2022-11-20 10:11:23 +01:00
parent fcca881cfc
commit 4ce75c2acb
3 changed files with 6 additions and 53 deletions

View File

@@ -246,7 +246,7 @@ func (c *appConfig) GetOSColors() map[string]string {
func (c *appConfig) GetAggregationTimeCron() string {
if strings.Contains(c.AggregationTime, ":") {
// old format, e.g. "15:04"
// old gocron format, e.g. "15:04"
timeParts := strings.Split(c.AggregationTime, ":")
h, err := strconv.Atoi(timeParts[0])
if err != nil {
@@ -266,7 +266,7 @@ func (c *appConfig) GetAggregationTimeCron() string {
func (c *appConfig) GetWeeklyReportCron() string {
if strings.Contains(c.ReportTimeWeekly, ",") {
// old format, e.g. "fri,18:00"
// old gocron format, e.g. "fri,18:00"
split := strings.Split(c.ReportTimeWeekly, ",")
weekday := parseWeekday(split[0])
timeParts := strings.Split(split[1], ":")
@@ -293,7 +293,7 @@ func (c *appConfig) GetLeaderboardGenerationTimeCron() []string {
var parse func(string) string
if strings.Contains(c.LeaderboardGenerationTime, ":") {
// old format, e.g. "15:04"
// old gocron format, e.g. "15:04"
parse = func(s string) string {
timeParts := strings.Split(s, ":")
h, err := strconv.Atoi(timeParts[0])