We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e26fea commit edd1beeCopy full SHA for edd1bee
CHANGELOG.md
@@ -1,6 +1,10 @@
1
2
# Changelog
3
4
+## Version 1.1.7
5
+
6
+- Fix for `api.tools.parse_attachment_url`.
7
8
## Version 1.1.6
9
10
- Better fix for `view_thread` event not triggeriong, by @cancan101.
package.json
@@ -1,6 +1,6 @@
{
"name": "gmail-js",
- "version": "1.1.6",
+ "version": "1.1.7",
"description": "JavaScript API for Gmail (useful for chrome extensions)",
"main": "src/gmail.js",
"types": "src/gmail.d.ts",
src/gmail.js
@@ -1953,7 +1953,7 @@ var Gmail = function(localJQuery) {
1953
var parts = url.split(":");
1954
return {
1955
type: parts[0],
1956
- url: parts[2] + ":" + parts[3]
+ url: parts[2] + ":" + parts[4] + ":" + parts[5]
1957
};
1958
1959
0 commit comments