Changeset 130 for smplayer/vendor/current/src/simplehttp.cpp
- Timestamp:
- Apr 30, 2012, 7:09:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/simplehttp.cpp
r127 r130 74 74 QString location = responseHeader.value("Location"); 75 75 qDebug("SimpleHttp::readResponseHeader: Location: '%s'", location.toLatin1().constData()); 76 http_get_id = get( location ); 76 /* http_get_id = get( location ); */ 77 download(location); 77 78 } 78 79 else … … 87 88 qDebug("SimpleHttp::httpRequestFinished: http_get_id: %d request_id: %d, error: %d", http_get_id, request_id, error); 88 89 89 90 if (request_id != http_get_id) return; 90 91 91 92 downloaded_text += readAll();
Note:
See TracChangeset
for help on using the changeset viewer.