forked from LBRYCommunity/lbry-sdk
update uri handler to use /watch
This commit is contained in:
parent
591634f175
commit
caf5d2f788
2 changed files with 4 additions and 4 deletions
|
@ -64,7 +64,7 @@ class LBRYURIHandler(object):
|
|||
if lbry_name == "lbry" or lbry_name == "" and not started:
|
||||
webbrowser.open(UI_ADDRESS)
|
||||
else:
|
||||
webbrowser.open(UI_ADDRESS + "/view?name=" + lbry_name)
|
||||
webbrowser.open(UI_ADDRESS + "/?watch=" + lbry_name)
|
||||
|
||||
def handle_linux(self, lbry_name):
|
||||
try:
|
||||
|
@ -77,7 +77,7 @@ class LBRYURIHandler(object):
|
|||
if lbry_name == "lbry":
|
||||
webbrowser.open(UI_ADDRESS)
|
||||
else:
|
||||
webbrowser.open(UI_ADDRESS + "/view?name=" + lbry_name)
|
||||
webbrowser.open(UI_ADDRESS + "/?watch=" + lbry_name)
|
||||
|
||||
|
||||
def main(args):
|
||||
|
|
|
@ -392,8 +392,8 @@ class LBRYDaemon(jsonrpc.JSONRPC):
|
|||
|
||||
log.info("[" + str(datetime.now()) + "] Starting lbrynet-daemon")
|
||||
|
||||
self.internet_connection_checker.start(60)
|
||||
self.version_checker.start(3600)
|
||||
self.internet_connection_checker.start(3600)
|
||||
self.version_checker.start(3600 * 12)
|
||||
self.connection_problem_checker.start(1)
|
||||
|
||||
d = defer.Deferred()
|
||||
|
|
Loading…
Reference in a new issue