[stable9] Set content-type to "application/octet-stream"
Some browsers such as Firefox on Microsoft Windows otherwise do offer to open the file directly which is kinda silly. Backport of https://github.com/nextcloud/server/pull/258
This commit is contained in:
parent
95f6dd909b
commit
94975af6db
|
@ -103,7 +103,8 @@ class LogSettingsController extends Controller {
|
|||
*/
|
||||
public function download() {
|
||||
$resp = new StreamResponse(\OC_Log_Owncloud::getLogFilePath());
|
||||
$resp->addHeader('Content-Disposition', 'attachment; filename="owncloud.log"');
|
||||
$resp->addHeader('Content-Type', 'application/octet-stream');
|
||||
$resp->addHeader('Content-Disposition', 'attachment; filename="nextcloud.log"');
|
||||
return $resp;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ namespace Test\Settings\Controller;
|
|||
|
||||
use \OC\Settings\Application;
|
||||
use OC\Settings\Controller\LogSettingsController;
|
||||
use OCP\AppFramework\Http\StreamResponse;
|
||||
|
||||
/**
|
||||
* @package OC\Settings\Controller
|
||||
|
@ -69,6 +70,9 @@ class LogSettingsControllerTest extends \Test\TestCase {
|
|||
public function testDownload() {
|
||||
$response = $this->logSettingsController->download();
|
||||
|
||||
$this->assertInstanceOf('\OCP\AppFramework\Http\StreamResponse', $response);
|
||||
$expected = new StreamResponse(\OC_Log_Owncloud::getLogFilePath());
|
||||
$expected->addHeader('Content-Type', 'application/octet-stream');
|
||||
$expected->addHeader('Content-Disposition', 'attachment; filename="nextcloud.log"');
|
||||
$this->assertEquals($expected, $response);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue