mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 17:16:14 +01:00
fix: #10172, fix postqueue accept/reject notification text
This commit is contained in:
@@ -136,7 +136,7 @@ async function sendQueueNotification(type, targetUid, path, notificationText) {
|
|||||||
const notifData = {
|
const notifData = {
|
||||||
type: type,
|
type: type,
|
||||||
nid: `${type}-${targetUid}-${path}`,
|
nid: `${type}-${targetUid}-${path}`,
|
||||||
bodyShort: `[[notifications:post-queue-notify, ${notificationText}]]` || `[[notifications:${type}]]`,
|
bodyShort: notificationText ? `[[notifications:${type}, ${notificationText}]]` : `[[notifications:${type}]]`,
|
||||||
path: path,
|
path: path,
|
||||||
};
|
};
|
||||||
if (parseInt(meta.config.postQueueNotificationUid, 10) > 0) {
|
if (parseInt(meta.config.postQueueNotificationUid, 10) > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user