We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6a90e97 + 5b73190 commit e9d5bc8Copy full SHA for e9d5bc8
function/commands/status/command.go
@@ -21,7 +21,7 @@ import (
21
func handleDomesticRegion(ctx context.Context, regionName string, boardData *coronaboard.CoronaBoardData) *api.InteractionResponse {
22
var status *coronaboard.DomesticNowStatus
23
for _, v := range boardData.StatDomesticNow {
24
- if v.Region == regionName {
+ if v.Region == regionName || (regionName == "전국" && v.Region == "합계") {
25
status = &v
26
break
27
}
0 commit comments