Fix resume for files being sent, and dont throw exception if we cannot open a file to send
This commit is contained in:
@@ -108,6 +108,6 @@ final class File extends Send
|
||||
|
||||
public function seek(int $pos): bool
|
||||
{
|
||||
return (fseek($this->f,$pos,SEEK_SET) === 0);
|
||||
return (fseek($this->fd,$pos,SEEK_SET) === 0);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user