mirror of https://gitlab.com/bashrc2/epicyon
Missing parameter
parent
ddb9d4fd82
commit
a08f6b273e
4
git.py
4
git.py
|
@ -155,12 +155,12 @@ def gitAddFromHandle(patchStr: str, handle: str) -> str:
|
|||
|
||||
|
||||
def receiveGitPatch(baseDir: str, nickname: str, domain: str,
|
||||
subject: str, content: str,
|
||||
messageType: str, subject: str, content: str,
|
||||
fromNickname: str, fromDomain: str) -> bool:
|
||||
"""Receive a git patch
|
||||
"""
|
||||
if not isGitPatch(baseDir, nickname, domain,
|
||||
subject, content):
|
||||
messageType, subject, content):
|
||||
return False
|
||||
|
||||
patchStr = gitFormatContent(content)
|
||||
|
|
1
inbox.py
1
inbox.py
|
@ -2062,6 +2062,7 @@ def inboxAfterCapabilities(recentPostsCache: {}, maxRecentPosts: int,
|
|||
if fromPort != 80 and fromPort != 443:
|
||||
fromDomain += ':' + str(fromPort)
|
||||
if receiveGitPatch(baseDir, nickname, domain,
|
||||
postJsonObject['object']['type'],
|
||||
postJsonObject['object']['summary'],
|
||||
postJsonObject['object']['content'],
|
||||
fromNickname, fromDomain):
|
||||
|
|
|
@ -3935,6 +3935,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
|||
if not postJsonObject['object'].get('content'):
|
||||
return ''
|
||||
isPatch = isGitPatch(baseDir, nickname, domain,
|
||||
postJsonObject['object']['type'],
|
||||
postJsonObject['object']['summary'],
|
||||
postJsonObject['object']['content'])
|
||||
|
||||
|
|
Loading…
Reference in New Issue