1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-07 15:11:32 +01:00

Merge pull request #728 from vichan-devel/RealAngeleno-patch-5

bugfix for ban appeals page
This commit is contained in:
Lorenzo Yario 2024-04-19 12:04:09 -07:00 committed by GitHub
commit 7025035376
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -351,13 +351,20 @@ class Post {
if (isset($this->files) && $this->files) { if (isset($this->files) && $this->files) {
$this->files = is_string($this->files) ? json_decode($this->files) : $this->files; $this->files = is_string($this->files) ? json_decode($this->files) : $this->files;
// Compatibility for posts before individual file hashing // Compatibility for posts before individual file hashing
foreach ($this->files as $i => &$file) { foreach ($this->files as $i => &$file) {
if (empty($file)) { if (empty($file)) {
unset($this->files[$i]); unset($this->files[$i]);
continue; continue;
} }
if (!isset($file->hash)) if (is_array($file)) {
$file->hash = $this->filehash; if (!isset($file['hash'])) {
$file['hash'] = $this->filehash;
}
} else if (is_object($file)) {
if (!isset($file->hash)) {
$file->hash = $this->filehash;
}
}
} }
} }