aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-01-13 09:39:55 +0000
committerMario <mario@mariovavti.com>2021-01-13 09:39:55 +0000
commitf4b9291d420a0f6e47beca784d0e5246a73214a6 (patch)
tree09ff688045897f17abbae1b366c47de2ee863e75 /Zotlabs
parent08f717d4fc27ff763c7f0380b5f24065ba62abd5 (diff)
parentb7afc905ecc5b738c7696b662692f727099cb968 (diff)
downloadvolse-hubzilla-f4b9291d420a0f6e47beca784d0e5246a73214a6.tar.gz
volse-hubzilla-f4b9291d420a0f6e47beca784d0e5246a73214a6.tar.bz2
volse-hubzilla-f4b9291d420a0f6e47beca784d0e5246a73214a6.zip
Merge branch 'dev' into 5.2RC
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Getfile.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/Zotlabs/Module/Getfile.php b/Zotlabs/Module/Getfile.php
index a867f5ff7..20cc23ac0 100644
--- a/Zotlabs/Module/Getfile.php
+++ b/Zotlabs/Module/Getfile.php
@@ -54,10 +54,9 @@ class Getfile extends \Zotlabs\Web\Controller {
$keyId = $sigblock['keyId'];
if($keyId) {
- $r = q("SELECT * FROM hubloc LEFT JOIN xchan ON hubloc_hash = xchan_hash
- WHERE hubloc_addr = '%s' OR hubloc_id_url = '%s'",
- dbesc(str_replace('acct:','',$keyId)),
- dbesc($keyId)
+ $r = q("select * from hubloc left join xchan on hubloc_hash = xchan_hash
+ where hubloc_id_url = '%s'",
+ dbesc(str_replace('acct:','',$keyId))
);
if($r) {
$hubloc = Libzot::zot_record_preferred($r);