Commit 06d539ab authored by Benoit Mortier's avatar Benoit Mortier
Browse files

Fixes: #639 when there is no argonaut server we got an error in the log

Showing with 1 addition and 1 deletion
+1 -1
......@@ -130,7 +130,7 @@ class jsonRPCClient {
'content' => $request
));
$context = stream_context_create($opts);
if ($fp = fopen($this->url, 'r', false, $context)) {
if ($fp = @fopen($this->url, 'r', false, $context)) {
$response = '';
while($row = fgets($fp)) {
$response.= trim($row)."\n";
......
  • bmortier @bmortier

    mentioned in issue #239

    By bmortier on 2017-09-02T14:40:56 (imported from GitLab)

    ·

    mentioned in issue #239

    By bmortier on 2017-09-02T14:40:56 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment