aboutsummaryrefslogtreecommitdiff
path: root/bridges/TapasBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/TapasBridge.php')
-rw-r--r--bridges/TapasBridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/TapasBridge.php b/bridges/TapasBridge.php
index 8009e64d..1dd8d009 100644
--- a/bridges/TapasBridge.php
+++ b/bridges/TapasBridge.php
@@ -36,7 +36,7 @@ class TapasBridge extends FeedExpander
$this->id = $this->getInput('title');
}
if ($this->getInput('force_title') || !$this->id) {
- $html = getSimpleHTMLDOM($this->getURI()) or returnServerError('Could not request ' . $this->getURI());
+ $html = getSimpleHTMLDOM($this->getURI());
$this->id = $html->find('meta[property$=":url"]', 0)->content;
$this->id = str_ireplace(['tapastic://series/', '/info'], '', $this->id);
}
value='jarred/ast'>jarred/ast Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/baz.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-04-02[bun.js] Support `mode` and `flags` as integer args in fs.openSync (instead o...Gravatar Jarred Sumner 1-0/+6
2022-04-02Update base.zigGravatar Jarred Sumner 1-0/+1
2022-04-02Fix GC bug when reading TypedArray from user inputGravatar Jarred Sumner 1-6/+36
2022-04-02s/Buffer/TypedArrayGravatar Jarred Sumner 1-17/+17
2022-04-02Fix mmap on macOS x64Gravatar Jarred Sumner 2-29/+27