Comment 10 for bug 1239289

Revision history for this message
Olivier Tilloy (osomon) wrote :

In my attempts to understand where the crash happens, I have modified the onOpened handler in /usr/share/mediaplayer-app/qml/player.qml to stop the playback and unset the source before enqueuing the new URIs, but this doesn’t make any difference, the crash still happens:

    Connections {
        target: UriHandler
        onOpened: {
            playerLoader.item.stop()
            playerLoader.item.source = ""
            for (var i = 0; i < uris.length; ++i) {
                playerLoader.item.playUri(uris[i])
            }
        }
    }