Skip to content

Commit

Permalink
fix #2704
Browse files Browse the repository at this point in the history
  • Loading branch information
zoic21 authored Jun 23, 2024
1 parent 3896832 commit e274ef9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions desktop/modal/first.use.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,15 @@
}

$pluginJeeEasy = false;
if(is_object(plugin::byId('jeeasy'))) {
$pluginJeeEasy = true;
try {
if(is_object(plugin::byId('jeeasy'))) {
$pluginJeeEasy = true;
}
} catch (\Throwable $th) {

}


$showDoc = false;
if (config::byKey('doc::base_url', 'core') != '') {
$showDoc = true;
Expand Down

0 comments on commit e274ef9

Please sign in to comment.