~people-project/people-core/deep-refactoring

« back to all changes in this revision

Viewing changes to backends/twitter/contact.vala

  • Committer: Ali Sabil
  • Date: 2009-01-16 23:38:19 UTC
  • Revision ID: ali.sabil@gmail.com-20090116233819-mst2gxgq74rw88w6
- Updated the Twitter backend

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
                private void get_fields_callback (Session session, Message msg) {
97
97
                        var operation = pending_operations.get (msg);
98
 
                        var fields = pending_requests_fields.get (msg);
99
98
 
100
99
                        if (msg.status_code != KnownStatusCode.OK) {
101
100
                                async_operation_emit (operation, new Gee.HashMap<string, string> (str_hash, str_equal, str_equal));
140
139
                        var fields = new Gee.HashMap<string, string> (str_hash, str_equal, str_equal);
141
140
 
142
141
                        weak Json.Node node;
143
 
                        weak Json.Array property;
144
 
                        weak Json.Object item;
145
142
 
146
143
                        /* full name */
147
144
                        node = root.get_member ("name");