]> git.mxchange.org Git - friendica.git/commitdiff
Fix for CW: Items weren't cached
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 15 Mar 2018 05:32:04 +0000 (01:32 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 15 Mar 2018 05:32:04 +0000 (01:32 -0400)
include/text.php

index 0aeaa7203be2a384f0a06d525dfc79bad5490b60..00d401cfb3f1df0777322976cd02a2d9b044b834 100644 (file)
@@ -1171,6 +1171,11 @@ function redir_private_images($a, &$item)
 
 function put_item_in_cache(&$item, $update = false)
 {
+       // Add the content warning
+       if (!empty($item['content-warning'])) {
+               $item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
+       }
+
        $rendered_hash = defaults($item, 'rendered-hash', '');
 
        if ($rendered_hash == ''
@@ -1182,11 +1187,6 @@ function put_item_in_cache(&$item, $update = false)
                // I'm not sure if we should store it permanently, so we save the old value.
                $body = $item["body"];
 
-               // Add the content warning
-               if (!empty($item['content-warning'])) {
-                       $item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
-               }
-
                $a = get_app();
                redir_private_images($a, $item);