Fixed problems with empty tables, bumped to v4
This commit is contained in:
parent
715ac03c3b
commit
9d2bfc599d
4
area.go
4
area.go
@ -45,6 +45,10 @@ func AreaRetrieve() (areas []Area, err error) { // {{{
|
||||
return
|
||||
}
|
||||
|
||||
if jsonData == nil {
|
||||
return
|
||||
}
|
||||
|
||||
err = json.Unmarshal(jsonData, &areas)
|
||||
if err != nil {
|
||||
err = re.Wrap(err)
|
||||
|
2
main.go
2
main.go
@ -23,7 +23,7 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const VERSION = "v3"
|
||||
const VERSION = "v4"
|
||||
|
||||
var (
|
||||
logger *slog.Logger
|
||||
|
@ -55,6 +55,10 @@ func ProblemsRetrieve() (problems []Problem, err error) {
|
||||
return
|
||||
}
|
||||
|
||||
if jsonBody == nil {
|
||||
return
|
||||
}
|
||||
|
||||
err = json.Unmarshal(jsonBody, &problems)
|
||||
if err != nil {
|
||||
err = we.Wrap(err)
|
||||
|
@ -63,6 +63,10 @@ func TriggersRetrieve() (areas []Area, err error) { // {{{
|
||||
return
|
||||
}
|
||||
|
||||
if jsonData == nil {
|
||||
return
|
||||
}
|
||||
|
||||
err = json.Unmarshal(jsonData, &areas)
|
||||
if err != nil {
|
||||
err = we.Wrap(err)
|
||||
|
Loading…
Reference in New Issue
Block a user