Skip to content

Commit

Permalink
PR JJoriping#932 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
KIWIMING-cyber authored Sep 8, 2024
1 parent 157a4c8 commit e7b7eb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Server/lib/Web/auth/auth_daldalso.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ module.exports.strategy = (strategyProcess, MainDB, Ajae) => {
$p.id = o.id;
$p.name = o.name;
$p.title = o.name;
$p.image = o.profile.image || 'https://daldal.so/anonymous.png';
$p.exordial = o.profile.text || '';
$p.image = o.profile && o.profile.image ? o.profile.image : 'https://daldal.so/anonymous.png';
$p.exordial = o.profile && o.profile.text ? o.profile.text : '';

strategyProcess(req, accessToken, MainDB, $p, done);
}
Expand Down

0 comments on commit e7b7eb5

Please sign in to comment.