mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-26 16:26:44 +03:00
Solve *Decrypt does not exists of previous change
This commit is contained in:
parent
3bac68dffb
commit
4538123526
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ abstract class Crypt
|
|||
{
|
||||
if (3 === \count($data) && isset($data[0], $data[1], $data[2]) && \strlen($data[0])) {
|
||||
$fn = "{$data[0]}Decrypt";
|
||||
if (\method_exists(__CLASS__, $fn)) {
|
||||
if (!\method_exists(__CLASS__, $fn)) {
|
||||
Log::warning('Crypt', "{$fn} does not exists");
|
||||
} else {
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue