mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 08:27:03 +03:00
fix spacing
This commit is contained in:
parent
cc22327279
commit
18a859c68f
1 changed files with 4 additions and 4 deletions
|
|
@ -4,15 +4,15 @@ namespace OCA\SnappyMail\Util;
|
||||||
|
|
||||||
class SnappyMailResponse extends \OCP\AppFramework\Http\Response
|
class SnappyMailResponse extends \OCP\AppFramework\Http\Response
|
||||||
{
|
{
|
||||||
public function render(): string
|
public function render(): string
|
||||||
{
|
{
|
||||||
$data = '';
|
$data = '';
|
||||||
$i = \ob_get_level();
|
$i = \ob_get_level();
|
||||||
while ($i--) {
|
while ($i--) {
|
||||||
$data .= \ob_get_clean();
|
$data .= \ob_get_clean();
|
||||||
}
|
}
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SnappyMailHelper
|
class SnappyMailHelper
|
||||||
|
|
@ -205,6 +205,6 @@ class SnappyMailHelper
|
||||||
{
|
{
|
||||||
static::loadApp();
|
static::loadApp();
|
||||||
$result = \SnappyMail\Crypt::DecryptUrlSafe($sPassword, $sSalt);
|
$result = \SnappyMail\Crypt::DecryptUrlSafe($sPassword, $sSalt);
|
||||||
return $result ? new \SnappyMail\SensitiveString($result) : $result;
|
return $result ? new \SnappyMail\SensitiveString($result) : null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue