Skip to content

Commit

Permalink
Fixed44
Browse files Browse the repository at this point in the history
  • Loading branch information
seif khelifi committed Sep 5, 2024
1 parent d63e1eb commit 11f5b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/groups/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = function (Groups) {
if (exists || privGroupExists) {
throw new Error('[[error:group-already-exists]]');
}
console.log('sarra : refactored code executed');
console.log('sarra : refactored code executed');
const memberCount = data.hasOwnProperty('ownerUid') ? 1 : 0;
const isPrivate = data.hasOwnProperty('private') && data.private !== undefined ? parseInt(data.private, 10) === 1 : true;
let groupData = {
Expand Down

0 comments on commit 11f5b59

Please sign in to comment.