Uh oh!
There was an error while loading. Please reload this page.
[C-5033] Prevent notification when artist comments - #9799
Conversation
|
| begin | ||
| if new.is_delete is false then | ||
| if new.user_id != owner_user_id then |
There was a problem hiding this comment.
in this case new.is_delete isn't necessary because there's on conflict do nothing but other cases it's actually important to avoid things like double counting
* origin/main: (161 commits) Audius Client (Web and Mobile) v1.5.100 Add client support for single transaction reward claiming (#9801) Enable audiusd workflow in main release (#9820) Version Packages (#9772) Add audius-d to monorepo (#9808) push cmds for core (#9807) Reapply libs split (#9817) [C-5026] Optimistic UI tweaks (web only for now) (#9816) Reactions also unset is_hidden for blast sender (#9813) Don't show empty chat prompt for blasts (#9815) [QA-1732] Undo test code to fix unread pill check for notifications (#9814) [PAY-3214] Add CreateBlast CTA to followers and supporters user lists (web) (#9804) [PAY-3426] Set unread count when seeding chats with blasts (#9812) [C-5033] Prevent notification when artist comments (#9799) Add back /d route, aka /uptime (#9809) UDF for chat_allowed (#9789) Audius Protocol v0.6.195 revert max width on chats (#9806) [PAY-3216] Update upload share buttons (#9805) Revert libs split (#9802) ...
[1e9eb11] worker to fix truncated qm audio cids (#9810) Steve Perkins [e28b82b] Add client support for single transaction reward claiming (#9801) Marcus Pasell [b0252db] Add audius-d to monorepo (#9808) Danny [1c2edae] Reapply libs split (#9817) Sebastian Klingler [6455bae] Reactions also unset is_hidden for blast sender (#9813) Reed [07c0e5a] [PAY-3426] Set unread count when seeding chats with blasts (#9812) Reed [075ea1a] [C-5033] Prevent notification when artist comments (#9799) Dylan Jeffers [d2b6cb4] Add back /d route, aka /uptime (#9809) endline [3f862a8] UDF for chat_allowed (#9789) Steve Perkins
Description
Prevents issue where an artist commenting on their own track would send them a comment notification.
Also removes
new.is_deletecondition as that is uncessary.