Browse Source

Fix public/private.

master
Chris Smith 5 years ago
parent
commit
2cdc9e531e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lineandsinker/services/gitea.py

+ 1
- 1
lineandsinker/services/gitea.py View File

@@ -29,7 +29,7 @@ class Gitea(Service):
29 29
                 "type": "git.push",
30 30
                 "repo": {
31 31
                     "name": data["repository"]["full_name"],
32
-                    "public": data["repository"]["private"],
32
+                    "public": not data["repository"]["private"],
33 33
                     "urls": urls,
34 34
                 },
35 35
                 "commits": [

Loading…
Cancel
Save