Feature request - error reporting with label in SC

Hi gang,

Not sure this is a bug, more likely a lack of insight …

In a dict of slice data (buf num, start, stop) I am seeing some -1 s as stop and start in consecutive points. Attempting to play these sections doesn’t throw an error (nor render audio)

What’s going on here?

{
“cols”: 3,
“data”: {
“0”: [
3.0,
0.0,
-1.0
],
“1”: [
3.0,
-1.0,
307140.0
],

-1 means that the slicer did not give any slices with the current settings. It is not an error per se but a feedback to the user to be used programmatically.

thanks