Closed
Bug 549781
Opened 15 years ago
Closed 14 years ago
Remove unwrapping of encrypted payloads
Categories
(Cloud Services Graveyard :: Firefox Home, defect)
Cloud Services Graveyard
Firefox Home
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Mardak, Assigned: dwalkowski)
References
Details
Bug 549636 removes the [wrap]; see attachment 429751 [details] [diff] [review].
Relevant changes to the current iphone client data: history/bookmarks/tabs..
History:
http://hg.mozilla.org/labs/weaveclient-iphone/file/dca2696f11d3/Network%20And%20Storage/Store.m#l860
No need to iterate over the NSArray historyArray (which should only have been looping once anyway) and just directly access the object.
(I don't know objective C, so I'm making up syntax from some existing code... :p)
NSDictionary *hist = [json JSONValue];
Bookmarks/Tabs:
http://hg.mozilla.org/labs/weaveclient-iphone/file/dca2696f11d3/Network%20And%20Storage/Store.m#l822
No need to read as array and [bmkArray objectAtIndex:0]
Same for tabs..
http://hg.mozilla.org/labs/weaveclient-iphone/file/dca2696f11d3/Network%20And%20Storage/Store.m#l888
Interesting that the data types have 3 different method signatures:
1) addHistorySet:(NSString *)json -> enumerator
2) addBookmarkRecord:(NSString *)json -> array -> index 0
3) addTabSet:(NSArray *)tabSetDict -> index 0
Assignee | ||
Updated•15 years ago
|
Assignee: nobody → dwalkowski
Assignee | ||
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Comment 1•14 years ago
|
||
Moving FFHome-related bugs to new component -> Firefox Home
Component: Experimental Clients → Firefox Home
QA Contact: experimental.clients → firefox-home
Updated•6 years ago
|
Product: Cloud Services → Cloud Services Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•