mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-29 07:02:34 +02:00
2016-09-26 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'lib/rdsimpleplayer.cpp' that caused RDAirPlay to freeze when attempting to audition an expired cart [GitHub issue #000051].
This commit is contained in:
parent
71b065aa38
commit
38dc64c548
@ -15480,3 +15480,7 @@
|
||||
chunks to be written with odd chunk lengths.
|
||||
2016-09-13 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Incremented the package version to 2.15.1int00.
|
||||
2016-09-26 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in 'lib/rdsimpleplayer.cpp' that caused RDAirPlay
|
||||
to freeze when attempting to audition an expired cart
|
||||
[GitHub issue #000051].
|
||||
|
@ -113,7 +113,10 @@ void RDSimplePlayer::play(int start_pos)
|
||||
|
||||
QString cut = "";
|
||||
RDCart *cart=new RDCart(play_cart);
|
||||
if (cart->selectCut(&cut)) {
|
||||
if(cart->selectCut(&cut)) {
|
||||
if(cut.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
play_cae->
|
||||
loadPlay(play_card,cut,&play_stream,&handle);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user