diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-21 20:03:58 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-21 20:03:58 -0800 |
commit | ea235c0c6751b682332b968b4c18f905e8ece451 (patch) | |
tree | 02b9514123fc4d9007ed7a1661911feac23bafa4 /Zotlabs | |
parent | 6481c9dca18d5b0e09e495b30edff987ac2da0b5 (diff) | |
download | volse-hubzilla-ea235c0c6751b682332b968b4c18f905e8ece451.tar.gz volse-hubzilla-ea235c0c6751b682332b968b4c18f905e8ece451.tar.bz2 volse-hubzilla-ea235c0c6751b682332b968b4c18f905e8ece451.zip |
no mention notifications from mastodon (and pleroma)
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/PConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/PConfig.php b/Zotlabs/Lib/PConfig.php index b9384cf6b..5e5954c95 100644 --- a/Zotlabs/Lib/PConfig.php +++ b/Zotlabs/Lib/PConfig.php @@ -138,7 +138,7 @@ class PConfig { $hash = hash('sha256',$family.':'.$key); if (self::Get($uid, 'hz_delpconfig', $hash) !== false) { - if (Get($uid, 'hz_delpconfig', $hash) > $updated) { + if (self::Get($uid, 'hz_delpconfig', $hash) > $updated) { logger('Refusing to update pconfig with outdated info (Item deleted more recently).', LOGGER_NORMAL, LOG_ERR); return self::Get($uid,$family,$key); } else { |