mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 17:10:10 +00:00
fix notification buttons
their current status wouldn't display because of a slight mistake, and they did the wrong thing because i forgot there isn't a nil value for bools.
This commit is contained in:
parent
70cf706a82
commit
49b056f1d6
21
api.go
21
api.go
@ -462,7 +462,7 @@ func (app *appContext) GetInvites(gc *gin.Context) {
|
|||||||
}
|
}
|
||||||
if _, ok := inv.Notify[address]; ok {
|
if _, ok := inv.Notify[address]; ok {
|
||||||
for _, notifyType := range []string{"notify-expiry", "notify-creation"} {
|
for _, notifyType := range []string{"notify-expiry", "notify-creation"} {
|
||||||
if _, ok = inv.Notify[notifyType]; ok {
|
if _, ok = inv.Notify[address][notifyType]; ok {
|
||||||
invite[notifyType] = inv.Notify[address][notifyType]
|
invite[notifyType] = inv.Notify[address][notifyType]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -476,13 +476,8 @@ func (app *appContext) GetInvites(gc *gin.Context) {
|
|||||||
gc.JSON(200, resp)
|
gc.JSON(200, resp)
|
||||||
}
|
}
|
||||||
|
|
||||||
type notifySetting struct {
|
|
||||||
NotifyExpiry bool `json:"notify-expiry"`
|
|
||||||
NotifyCreation bool `json:"notify-creation"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (app *appContext) SetNotify(gc *gin.Context) {
|
func (app *appContext) SetNotify(gc *gin.Context) {
|
||||||
var req map[string]notifySetting
|
var req map[string]map[string]bool
|
||||||
gc.BindJSON(&req)
|
gc.BindJSON(&req)
|
||||||
changed := false
|
changed := false
|
||||||
for code, settings := range req {
|
for code, settings := range req {
|
||||||
@ -518,14 +513,14 @@ func (app *appContext) SetNotify(gc *gin.Context) {
|
|||||||
} /*else {
|
} /*else {
|
||||||
if _, ok := invite.Notify[address]["notify-expiry"]; !ok {
|
if _, ok := invite.Notify[address]["notify-expiry"]; !ok {
|
||||||
*/
|
*/
|
||||||
if invite.Notify[address]["notify-expiry"] != settings.NotifyExpiry {
|
if _, ok := settings["notify-expiry"]; ok && invite.Notify[address]["notify-expiry"] != settings["notify-expiry"] {
|
||||||
invite.Notify[address]["notify-expiry"] = settings.NotifyExpiry
|
invite.Notify[address]["notify-expiry"] = settings["notify-expiry"]
|
||||||
app.debug.Printf("%s: Set \"notify-expiry\" to %t for %s", code, settings.NotifyExpiry, address)
|
app.debug.Printf("%s: Set \"notify-expiry\" to %t for %s", code, settings["notify-expiry"], address)
|
||||||
changed = true
|
changed = true
|
||||||
}
|
}
|
||||||
if invite.Notify[address]["notify-creation"] != settings.NotifyCreation {
|
if _, ok := settings["notify-creation"]; ok && invite.Notify[address]["notify-creation"] != settings["notify-creation"] {
|
||||||
invite.Notify[address]["notify-creation"] = settings.NotifyCreation
|
invite.Notify[address]["notify-creation"] = settings["notify-creation"]
|
||||||
app.debug.Printf("%s: Set \"notify-creation\" to %t for %s", code, settings.NotifyExpiry, address)
|
app.debug.Printf("%s: Set \"notify-creation\" to %t for %s", code, settings["notify-creation"], address)
|
||||||
changed = true
|
changed = true
|
||||||
}
|
}
|
||||||
if changed {
|
if changed {
|
||||||
|
Loading…
Reference in New Issue
Block a user