Skip to content

Commit

Permalink
Update: app name & does not ignore self in member list
Browse files Browse the repository at this point in the history
  • Loading branch information
juzser committed Feb 8, 2023
1 parent 59292db commit 4948b71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"homepage": "https://github.com/juzser",
"support": "https://github.com/juzser/Rocket.Chat-reminder"
},
"name": "oe-reminder",
"name": "Cukoo Reminder",
"nameSlug": "oe-reminder",
"classFile": "OeReminderApp.ts",
"description": "Advanced reminder app, with: one time, frequency reminder & message quote remind.",
"description": "Advanced FREE reminder app that will remind you what to do.\n\n**Main features:**\n- One time, frequency remind.\n- View active, completed reminders.\n- Pause/Resume reminders.\n-Remind yourself, channel or other users.\n- Quote a message to a reminder.\n- Easy to use & fully performance optimization.\n\nAND, it's opensources. You can feel free to ask me anything via Github repo.",
"permissions": [
{
"name": "server-setting.read"
Expand Down
5 changes: 1 addition & 4 deletions src/modals/reminderCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,7 @@ export async function reminderCreate({ app, room, user, read, modify, targetType
await app.membersCache.getMembers();

if (app.membersCache.members) {
// Remove current user from list
const users = app.membersCache.members.filter((member) => {
return member.id !== user.id;
});
const users = app.membersCache.members;

const userOptions = getMemberOptions(users);

Expand Down

0 comments on commit 4948b71

Please sign in to comment.