Skip to content

Commit 276ad84

Browse files
authored
Merge pull request #135 from cron-ooo/recognize-opera
Bug fix: Make Opera browser recongizable
2 parents b23e8db + f13e77f commit 276ad84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

user_sessions/templatetags/user_sessions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010
BROWSERS = (
1111
(re.compile('Edg'), _('Edge')),
12+
(re.compile('OPR'), _('Opera')),
1213
(re.compile('Chrome'), _('Chrome')),
1314
(re.compile('Safari'), _('Safari')),
1415
(re.compile('Firefox'), _('Firefox')),
15-
(re.compile('Opera'), _('Opera')),
1616
(re.compile('IE'), _('Internet Explorer')),
1717
)
1818
DEVICES = (

0 commit comments

Comments
 (0)