1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 07:50:23 +01:00

Compatability fix

This commit is contained in:
8chan 2014-11-09 23:23:47 -08:00
parent 5848c96fdc
commit 30f4b5b5c2

View File

@ -91,7 +91,8 @@ class Api {
$dotPos = strrpos($file->file, '.');
$apiPost['ext'] = substr($file->file, $dotPos);
$apiPost['tim'] = substr($file->file, 0, $dotPos);
$apiPost['md5'] = base64_encode(hex2bin($file->hash));
if (isset($file->hash))
$apiPost['md5'] = base64_encode(hex2bin($file->hash));
}
private function translatePost($post, $threadsPage = false) {