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.1.7
5
+
6
+ - Fix for ` api.tools.parse_attachment_url ` .
7
+
4
8
## Version 1.1.6
5
9
6
10
- Better fix for ` view_thread ` event not triggeriong, by @cancan101 .
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gmail-js" ,
3
- "version" : " 1.1.6 " ,
3
+ "version" : " 1.1.7 " ,
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 @@ -1953,7 +1953,7 @@ var Gmail = function(localJQuery) {
1953
1953
var parts = url . split ( ":" ) ;
1954
1954
return {
1955
1955
type : parts [ 0 ] ,
1956
- url : parts [ 2 ] + ":" + parts [ 3 ]
1956
+ url : parts [ 2 ] + ":" + parts [ 4 ] + ":" + parts [ 5 ]
1957
1957
} ;
1958
1958
} ;
1959
1959
You can’t perform that action at this time.
0 commit comments