minor bugfix: handled a previously uncaught error condition
This commit is contained in:
parent
36b266be89
commit
d668abe2c1
|
@ -799,8 +799,12 @@ GLiveSupport :: acquirePlayable(Ptr<const UniqueId>::Ref id)
|
|||
|
||||
} else if (existsAudioClip(id)) {
|
||||
playable = acquireAudioClip(id);
|
||||
}
|
||||
|
||||
} else {
|
||||
throw XmlRpcInvalidArgumentException(
|
||||
"invalid ID in GLiveSupport::acquirePlayable");
|
||||
}
|
||||
|
||||
return playable;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue