]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add some comments 2679/head
authorJeremy Benoist <j0k3r@users.noreply.github.com>
Sun, 4 Dec 2016 10:27:49 +0000 (11:27 +0100)
committerGitHub <noreply@github.com>
Sun, 4 Dec 2016 10:27:49 +0000 (11:27 +0100)
src/Wallabag/CoreBundle/Helper/ContentProxy.php

index 2690edbe080fe4916e22329f0d24ec4006de8ce2..0130bd2b21ccc7474db07994f26d7dbd14fafa34 100644 (file)
@@ -51,6 +51,9 @@ class ContentProxy
         // do we have to fetch the content or the provided one is ok?
         if (empty($content) || false === $this->validateContent($content)) {
             $fetchedContent = $this->graby->fetchContent($url);
+
+            // when content is imported, we have information in $content
+            // in case fetching content goes bad, we'll keep the imported information instead of overriding them
             if (empty($content) || $fetchedContent['html'] !== $this->fetchingErrorMessage) {
                 $content = $fetchedContent;
             }