Skip to content

Commit

Permalink
Fix for Beta/Developer builds of Opera (#1010)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhanlon95 authored Oct 31, 2024
1 parent 2859f5b commit 0badab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/data/tbcore.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ export function debugInformation () {
break;
}
case OPERA: {
browserMatchedInfo = browserUserAgent.match(/\((.*?)\).*OPR\/([0-9.]*?)$/);
browserMatchedInfo = browserUserAgent.match(/\((.*?)\).*OPR\/([0-9.]*).*$/);
debugObject.browser = 'Opera';
debugObject.browserVersion = browserMatchedInfo[2];
debugObject.platformInformation = browserMatchedInfo[1];
Expand Down

0 comments on commit 0badab9

Please sign in to comment.