From 48e03a5225cf600a6eb491eb64a4a97219925904 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 25 Feb 2020 16:45:23 +0000 Subject: [PATCH] Missing argument --- webinterface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index 751b86da..7ad3d389 100644 --- a/webinterface.py +++ b/webinterface.py @@ -2566,7 +2566,7 @@ def postIsMuted(baseDir: str,nickname: str,domain: str, \ return False def getPostAttachmentsAsHtml(postJsonObject: {},boxName: str,translate: {}, \ - isMuted: bool, \ + isMuted: bool,avatarLink: str, \ replyStr: str,announceStr: str,likeStr: str, \ bookmarkStr: str,deleteStr: str,muteStr: str) -> (str,str): """Returns a string representing any attachments @@ -3216,7 +3216,7 @@ def individualPostAsHtml(recentPostsCache: {},maxRecentPosts: int, \ attachmentStr,galleryStr= \ getPostAttachmentsAsHtml(postJsonObject,boxName,translate, \ - isMuted, \ + isMuted,avatarLink, \ replyStr,announceStr,likeStr, \ bookmarkStr,deleteStr,muteStr)