Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
077db937
Commit
077db937
authored
Aug 22, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
overriding 'id' response key for get command -> fixed
parent
cd88465d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/jio/core/IODeferred.js
src/jio/core/IODeferred.js
+6
-2
No files found.
src/jio/core/IODeferred.js
View file @
077db937
...
...
@@ -28,7 +28,11 @@ IODeferred.prototype.resolve = function (a, b) {
}
else
{
weak
.
status
=
constants
.
http_status
.
ok
;
weak
.
statusText
=
constants
.
http_status_text
.
ok
;
weak
.
id
=
this
.
_info
.
_id
;
if
(
this
.
_method
!==
'
get
'
)
{
weak
.
id
=
this
.
_info
.
_id
;
}
else
{
weak
.
_id
=
this
.
_info
.
_id
;
}
if
(
/Attachment$/
.
test
(
this
.
_method
))
{
weak
.
attachment
=
this
.
_info
.
_attachment
;
}
...
...
@@ -52,7 +56,7 @@ IODeferred.prototype.resolve = function (a, b) {
}
dictUpdate
(
weak
,
strong
);
strong
=
undefined
;
// free memory
if
(
t
ypeof
weak
.
id
!==
'
string
'
||
!
weak
.
id
)
{
if
(
t
his
.
_method
!==
'
get
'
&&
(
typeof
weak
.
id
!==
'
string
'
||
!
weak
.
id
)
)
{
return
this
.
reject
(
'
internal_storage_error
'
,
'
invalid response
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment