aboutsummaryrefslogtreecommitdiff
path: root/matrix/matrix.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/matrix.go')
-rw-r--r--matrix/matrix.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/matrix/matrix.go b/matrix/matrix.go
index ef0e349..b87042e 100644
--- a/matrix/matrix.go
+++ b/matrix/matrix.go
@@ -178,8 +178,10 @@ func (c *Container) UpdatePushRules() {
resp, err := pushrules.GetPushRules(c.client)
if err != nil {
debug.Print("Failed to fetch push rules:", err)
+ c.config.PushRules = &pushrules.PushRuleset{}
+ } else {
+ c.config.PushRules = resp
}
- c.config.PushRules = resp
c.config.SavePushRules()
}