forked from leftypol/leftypol
simplify the md5 execution logic
This commit is contained in:
parent
9768161327
commit
dcf5d699bd
3 changed files with 31 additions and 26 deletions
|
@ -92,7 +92,12 @@ class Api {
|
|||
$dotPos = strrpos($file->file, '.');
|
||||
$apiPost['ext'] = substr($file->file, $dotPos);
|
||||
$apiPost['tim'] = substr($file->file, 0, $dotPos);
|
||||
$apiPost['md5'] = base64_encode(hex2bin($post->filehash));
|
||||
if (isset ($file->hash) && $post->filehash) {
|
||||
$apiPost['md5'] = base64_encode(hex2bin($file->hash));
|
||||
}
|
||||
else if (isset ($post->filehash) && $post->filehash) {
|
||||
$apiPost['md5'] = base64_encode(hex2bin($post->filehash));
|
||||
}
|
||||
}
|
||||
|
||||
private function translatePost($post, $threadsPage = false) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue