mirror of https://gitlab.com/bashrc2/epicyon
Typo
parent
1655a68c7c
commit
6ac45978e8
24
epicyon.py
24
epicyon.py
|
@ -15,8 +15,8 @@ from person import deactivateAccount
|
||||||
from skills import setSkillLevel
|
from skills import setSkillLevel
|
||||||
from roles import setRole
|
from roles import setRole
|
||||||
from webfinger import webfingerHandle
|
from webfinger import webfingerHandle
|
||||||
#from posts import getPublicPostDomains
|
from posts import getPublicPostDomains
|
||||||
#from posts import getPublicPostDomainsBlocked
|
from posts import getPublicPostDomainsBlocked
|
||||||
from posts import sendBlockViaServer
|
from posts import sendBlockViaServer
|
||||||
from posts import sendUndoBlockViaServer
|
from posts import sendUndoBlockViaServer
|
||||||
from posts import createPublicPost
|
from posts import createPublicPost
|
||||||
|
@ -477,11 +477,11 @@ if args.postDomains:
|
||||||
elif args.gnunet:
|
elif args.gnunet:
|
||||||
proxyType = 'gnunet'
|
proxyType = 'gnunet'
|
||||||
domainList = []
|
domainList = []
|
||||||
# domainList = getPublicPostDomains(None,
|
domainList = getPublicPostDomains(None,
|
||||||
# baseDir, nickname, domain,
|
baseDir, nickname, domain,
|
||||||
# proxyType, args.port,
|
proxyType, args.port,
|
||||||
# httpPrefix, debug,
|
httpPrefix, debug,
|
||||||
# __version__, domainList)
|
__version__, domainList)
|
||||||
for postDomain in domainList:
|
for postDomain in domainList:
|
||||||
print(postDomain)
|
print(postDomain)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
@ -516,11 +516,11 @@ if args.postDomainsBlocked:
|
||||||
elif args.gnunet:
|
elif args.gnunet:
|
||||||
proxyType = 'gnunet'
|
proxyType = 'gnunet'
|
||||||
domainList = []
|
domainList = []
|
||||||
# domainList = getPublicPostDomainsBlocked(None,
|
domainList = getPublicPostDomainsBlocked(None,
|
||||||
# baseDir, nickname, domain,
|
baseDir, nickname, domain,
|
||||||
# proxyType, args.port,
|
proxyType, args.port,
|
||||||
# httpPrefix, debug,
|
httpPrefix, debug,
|
||||||
# __version__, domainList)
|
__version__, domainList)
|
||||||
for postDomain in domainList:
|
for postDomain in domainList:
|
||||||
print(postDomain)
|
print(postDomain)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
2
posts.py
2
posts.py
|
@ -3273,7 +3273,7 @@ def getPublicPostDomains(session, baseDir: str, nickname: str, domain: str,
|
||||||
return domainList
|
return domainList
|
||||||
|
|
||||||
(personUrl, pubKeyId, pubKey,
|
(personUrl, pubKeyId, pubKey,
|
||||||
personId, shaedInbox,
|
personId, sharedInbox,
|
||||||
capabilityAcquisition,
|
capabilityAcquisition,
|
||||||
avatarUrl, displayName) = getPersonBox(baseDir, session, wfRequest,
|
avatarUrl, displayName) = getPersonBox(baseDir, session, wfRequest,
|
||||||
personCache,
|
personCache,
|
||||||
|
|
Loading…
Reference in New Issue