File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
# Changelog
3
3
4
+ ## Version 1.0.13
5
+
6
+ - Fix error in ` gmail.get.localization() ` , which should have been caught by CI.
7
+
4
8
## Version 1.0.12
5
9
6
10
- Fix error in ` gmail.get.localization() ` . This closes [ issue 652] ( https://github.com/KartikTalwar/gmail.js/issues/652 ) .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gmail-js" ,
3
- "version" : " 1.0.12 " ,
3
+ "version" : " 1.0.13 " ,
4
4
"description" : " JavaScript API for Gmail (useful for chrome extensions)" ,
5
5
"main" : " src/gmail.js" ,
6
6
"types" : " src/gmail.d.ts" ,
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ var Gmail = function(localJQuery) {
271
271
// and in even newer gmail this seems to work:
272
272
if ( globals [ 4 ] ) {
273
273
let locale = globals [ 4 ] . split ( "." ) [ 1 ] ;
274
- local = api . helper . filter_locale ( locale ) ;
274
+ locale = api . helper . filter_locale ( locale ) ;
275
275
if ( locale ) {
276
276
return locale ;
277
277
}
You can’t perform that action at this time.
0 commit comments