removed debug messages
parent
d5a169bae3
commit
9c479f7baf
|
@ -45,8 +45,6 @@ func SendMessage(today string, nextDay string) {
|
||||||
var todayRepresentation []Representation
|
var todayRepresentation []Representation
|
||||||
var nextDayRepresentation []Representation
|
var nextDayRepresentation []Representation
|
||||||
|
|
||||||
log.Println(today)
|
|
||||||
|
|
||||||
if today != "-" {
|
if today != "-" {
|
||||||
representation, err := Base64DecodeAndUnmarshal(today)
|
representation, err := Base64DecodeAndUnmarshal(today)
|
||||||
|
|
||||||
|
@ -55,8 +53,6 @@ func SendMessage(today string, nextDay string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
todayRepresentation = representation
|
todayRepresentation = representation
|
||||||
|
|
||||||
log.Println(representation)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if nextDay != "-" {
|
if nextDay != "-" {
|
||||||
|
@ -69,8 +65,6 @@ func SendMessage(today string, nextDay string) {
|
||||||
nextDayRepresentation = representation
|
nextDayRepresentation = representation
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Println(nextDayRepresentation, todayRepresentation)
|
|
||||||
|
|
||||||
if len(todayRepresentation) == 0 && len(nextDayRepresentation) == 0 {
|
if len(todayRepresentation) == 0 && len(nextDayRepresentation) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue