diff --git a/src/views/open_live/OpenQueue.vue b/src/views/open_live/OpenQueue.vue index 271b359..c9640f9 100644 --- a/src/views/open_live/OpenQueue.vue +++ b/src/views/open_live/OpenQueue.vue @@ -366,7 +366,7 @@ function checkMessage(eventData: EventModel) { if (settings.value.keyword && eventData.type === EventDataTypes.Message && !checkMatch(eventData.msg)) { return false //非排队弹幕 } else if (eventData.type === EventDataTypes.Gift) { - if (!settings.value.allowGift) { + if (!settings.value.allowGift && !settings.value.allowIncreasePaymentBySendGift) { return false // { success: false, message: '不允许通过礼物排队' } } const nameNotMatch = (settings.value.giftNames?.length ?? 0) > 0 && settings.value.giftNames?.some((n) => eventData.msg.toLowerCase() === n.toLowerCase()) != true @@ -814,7 +814,7 @@ onUnmounted(() => { -
+
{{ index + 1 }}
diff --git a/src/views/open_live/ReadDanmaku.vue b/src/views/open_live/ReadDanmaku.vue index 2760719..fb84306 100644 --- a/src/views/open_live/ReadDanmaku.vue +++ b/src/views/open_live/ReadDanmaku.vue @@ -1,7 +1,7 @@ {{ isSpeaking ? '取消朗读' : '未朗读' }} - 队列: {{ speechCount }} 已读: {{readedDanmaku }} 条 + 队列: {{ speechCount }} 已读: {{ readedDanmaku }} 条 @@ -420,9 +421,7 @@ onUnmounted(() => { 设置 - - 没想好需要什么, 有建议的话可以和我说 - + 没想好需要什么, 有建议的话可以和我说