RemoteSubscriber: fix crash if connection goes away
Reproduction steps:
- open web UI
- cast a video to PMP
- close the web UI while video is still playing
m_response then will point to a dnagling pointer, and crash PMP soon
enough. This is because QHttp uses deleteLater() on the object on
disconnects.
Fix this by using QPointer, which was designed for this purpose. If the
QObject is deleted, the QPointer will be reset to NULL.