| Author | DaveJarvis <email> |
|---|---|
| Date | 2023-11-11 14:22:04 GMT-0800 |
| Commit | 16dd4d5ac72d4271ed33a7e599ce7cdd9dd24caa |
| Parent | 32d4eef |
| Delta | 1 line added, 1 line removed |
| // Multiple ranges could be specified, but only serve the first range. | ||
| - $seek_start = $matches[ 1 ] + 0; | ||
| + $seek_start = isset( $matches[ 1 ] ) ? $matches[ 1 ] + 0 : 0; | ||
| $seek_end = isset( $matches[ 2 ] ) ? $matches[ 2 ] + 0 : $size - 1; | ||