diff --git a/daemon.py b/daemon.py index f72ee5228..1f5d0d38a 100644 --- a/daemon.py +++ b/daemon.py @@ -10603,8 +10603,6 @@ def runDaemon(blogsInstance: bool, mediaInstance: bool, port=80, proxyPort=80, httpPrefix='https', fedList=[], maxMentions=10, maxEmoji=10, authenticatedFetch=False, - noreply=False, nolike=False, nopics=False, - noannounce=False, cw=False, proxyType=None, maxReplies=64, domainMaxPostsPerDay=8640, accountMaxPostsPerDay=864, allowDeletion=False, debug=False, unitTest=False, diff --git a/epicyon.py b/epicyon.py index 906872407..996200808 100644 --- a/epicyon.py +++ b/epicyon.py @@ -1895,8 +1895,6 @@ if __name__ == "__main__": port, proxyPort, httpPrefix, federationList, args.maxMentions, args.maxEmoji, args.authenticatedFetch, - False, False, False, - False, False, proxyType, args.maxReplies, args.domainMaxPostsPerDay, args.accountMaxPostsPerDay, diff --git a/tests.py b/tests.py index c36403504..fa0de6165 100644 --- a/tests.py +++ b/tests.py @@ -249,11 +249,6 @@ def createServerAlice(path: str, domain: str, port: int, httpPrefix = 'http' proxyType = None password = 'alicepass' - noreply = False - nolike = False - nopics = False - noannounce = False - cw = False useBlurhash = True maxReplies = 64 domainMaxPostsPerDay = 1000 @@ -296,7 +291,6 @@ def createServerAlice(path: str, domain: str, port: int, "instanceId", False, path, domain, onionDomain, i2pDomain, None, port, port, httpPrefix, federationList, maxMentions, maxEmoji, False, - noreply, nolike, nopics, noannounce, cw, proxyType, maxReplies, domainMaxPostsPerDay, accountMaxPostsPerDay, allowDeletion, True, True, False, sendThreads, False, @@ -317,11 +311,6 @@ def createServerBob(path: str, domain: str, port: int, proxyType = None clientToServer = False password = 'bobpass' - noreply = False - nolike = False - nopics = False - noannounce = False - cw = False useBlurhash = False maxReplies = 64 domainMaxPostsPerDay = 1000 @@ -364,7 +353,6 @@ def createServerBob(path: str, domain: str, port: int, "instanceId", False, path, domain, onionDomain, i2pDomain, None, port, port, httpPrefix, federationList, maxMentions, maxEmoji, False, - noreply, nolike, nopics, noannounce, cw, proxyType, maxReplies, domainMaxPostsPerDay, accountMaxPostsPerDay, allowDeletion, True, True, False, sendThreads, False, @@ -383,11 +371,6 @@ def createServerEve(path: str, domain: str, port: int, federationList: [], httpPrefix = 'http' proxyType = None password = 'evepass' - noreply = False - nolike = False - nopics = False - noannounce = False - cw = False maxReplies = 64 allowDeletion = True privateKeyPem, publicKeyPem, person, wfEndpoint = \ @@ -406,7 +389,6 @@ def createServerEve(path: str, domain: str, port: int, federationList: [], "instanceId", False, path, domain, onionDomain, i2pDomain, None, port, port, httpPrefix, federationList, maxMentions, maxEmoji, False, - noreply, nolike, nopics, noannounce, cw, proxyType, maxReplies, allowDeletion, True, True, False, sendThreads, False, False)