Skip to content

Commit

Permalink
Test sentry reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
loremattei committed Dec 18, 2024
1 parent 5af0557 commit de44571
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DuckDuckGo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15224,8 +15224,8 @@
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/duckduckgo/BrowserServicesKit";
requirement = {
kind = exactVersion;
version = 220.0.0;
branch = "loremattei/test-sentry-reporting";
kind = branch;
};
};
9FF521422BAA8FF300B9819B /* XCRemoteSwiftPackageReference "lottie-spm" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/duckduckgo/BrowserServicesKit",
"state" : {
"revision" : "55e7de13a99793329993367169c9b6bafbd07bac",
"version" : "220.0.0"
"branch" : "loremattei/test-sentry-reporting",
"revision" : "54c4c4de5fc2a8b91e8806705f643ac83af2f71d"
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion DuckDuckGo/Menus/MainMenuActions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,11 @@ extension MainViewController {
}

@objc func crashOnException(_ sender: Any?) {
DispatchQueue.main.async {
/*DispatchQueue.main.async {
self.navigationBarViewController.addressBarViewController?.addressBarTextField.suggestionViewController.tableView.view(atColumn: 1, row: .max, makeIfNecessary: false)
}*/
let myQueue = DispatchQueue(label: "review.ddg.crashtestqueue", attributes: .concurrent)
myQueue.async {
self.navigationBarViewController.addressBarViewController?.addressBarTextField.suggestionViewController.tableView.view(atColumn: 1, row: .max, makeIfNecessary: false)
}
}
Expand Down

0 comments on commit de44571

Please sign in to comment.