Skip to content

Commit 0ac3d0d

Browse files
author
Arron Woods
committed
String property not existing
1 parent 2fe77b6 commit 0ac3d0d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

library/SSRS/Object/ReportOutput.php

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ public function preCacheStreams(Report $report, $localCachePath, $format = 'HTML
3131
}
3232

3333
public function getStreamIds() {
34+
if(empty($this->StreamIds->string)){
35+
return array();
36+
}
37+
3438
$ids = is_array($this->StreamIds->string) ? $this->StreamIds->string : array($this->StreamIds->string);
3539
return array_filter($ids);
3640
}

0 commit comments

Comments
 (0)