Small fixes

- Avoid an intermediate variable
- Use `rawContent()` in `Attach` module
- Small typo
This commit is contained in:
fabrixxm 2019-01-04 07:45:08 +01:00 committed by Hypolite Petovan
commit 518f28a7bf
3 changed files with 5 additions and 8 deletions

View file

@ -114,8 +114,7 @@ function videos_post(App $a)
$video_id = $_POST['id'];
$r = Attach::exists(['id' => $video_id, 'uid' => local_user()]);
if ($r === true) {
if (Attach::exists(['id' => $video_id, 'uid' => local_user()])) {
// delete the attachment
Attach::delete(['id' => $video_id, 'uid' => local_user()]);