diff options
author | Mario <mario@mariovavti.com> | 2020-04-05 15:00:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-04-05 15:00:08 +0000 |
commit | cb2996a40cf86d727bfda2df86bdcc8d643b46da (patch) | |
tree | 6c802ff7ce8badd61b798abcc059417d65a04fc9 /Zotlabs/Module | |
parent | ea237a97a16c35cc808d3f5a39139c94cc17cbaa (diff) | |
download | volse-hubzilla-cb2996a40cf86d727bfda2df86bdcc8d643b46da.tar.gz volse-hubzilla-cb2996a40cf86d727bfda2df86bdcc8d643b46da.tar.bz2 volse-hubzilla-cb2996a40cf86d727bfda2df86bdcc8d643b46da.zip |
another import fix and do not allow importing channels < version 4.7.4 for zot6 compatibility reasons
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Import.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Zotlabs/Module/Import.php b/Zotlabs/Module/Import.php index ef11e1778..2c6e09fa7 100644 --- a/Zotlabs/Module/Import.php +++ b/Zotlabs/Module/Import.php @@ -137,6 +137,11 @@ class Import extends \Zotlabs\Web\Controller { return; } + if(version_compare($data['compatibility']['version'], '4.7.3', '<=')) { + // zot6 transition: cloning is not compatible with older versions + notice('Data export format is not compatible with this software (not a zot6 channel)'); + return; + } if($moving) $seize = 1; @@ -344,7 +349,7 @@ class Import extends \Zotlabs\Web\Controller { } if($xchan['xchan_network'] === 'zot6') { - $zhash = \Zotlabs\Lib\Libzot::make_xchan_hash($xchan['xchan_guid'],$xchan['xchan_pubkey']); + $zhash = Libzot::make_xchan_hash($xchan['xchan_guid'],$xchan['xchan_pubkey']); if($zhash !== $xchan['xchan_hash']) { logger('forged xchan: ' . print_r($xchan,true)); continue; |