tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 7b5a14df44805e7bbbaebadb0c65a94f373bd093
parent f8e38da113d46e4c75d72a91ffd7b54bb3fcca22
Author: Gabriele Svelto <gsvelto@mozilla.com>
Date:   Mon, 17 Nov 2025 17:22:31 +0000

Bug 2000605 - Make file URLs in symbol files should point to the mozilla-firefox/firefox GitHub repo r=mstange

Differential Revision: https://phabricator.services.mozilla.com/D272867

Diffstat:
Mtoolkit/crashreporter/tools/symbolstore.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toolkit/crashreporter/tools/symbolstore.py b/toolkit/crashreporter/tools/symbolstore.py @@ -327,7 +327,7 @@ def TryGetGitRepoInfoFromHg(srcdir): "hg", "-R", srcdir, "log", "-r", rev, "-T", "{extras.git_commit}" ) if git_commit: - git_root = "https://github.com/mozilla/firefox" + git_root = "https://github.com/mozilla-firefox/firefox" return GitRepoInfo(srcdir, git_commit, git_root) return None