Skip to content

Commit 0f56cfd

Browse files
committed
style($http): remove unused argument
1 parent 52ec83a commit 0f56cfd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ng/http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function $HttpProvider() {
9696
// strip json vulnerability protection prefix
9797
data = data.replace(PROTECTION_PREFIX, '');
9898
if (JSON_START.test(data) && JSON_END.test(data))
99-
data = fromJson(data, true);
99+
data = fromJson(data);
100100
}
101101
return data;
102102
}],

0 commit comments

Comments
 (0)