Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/eb92ee16b01400f34ca7a456b87f7a2cd6fcc26b?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Git username and email configuration

pull/26/head
Louis Vézina 7 years ago
parent 29ac49c959
commit eb92ee16b0

@ -8,6 +8,9 @@ repository_path = pygit2.discover_repository(current_working_directory)
local_repo = pygit2.Repository(repository_path) local_repo = pygit2.Repository(repository_path)
def check_and_apply_update(repo=local_repo, remote_name='origin'): def check_and_apply_update(repo=local_repo, remote_name='origin'):
repo.config['user.name'] = 'Bazarr user'
repo.config['user.email'] ='bazarr@fakeuser.com'
for remote in repo.remotes: for remote in repo.remotes:
if remote.name == remote_name: if remote.name == remote_name:
remote.fetch() remote.fetch()

Loading…
Cancel
Save