Troubleshooting
Troubleshooting
Notifications Not Displaying
Check Resource Start: Ensure
b2_notifyV2
is started in yourserver.cfg
:start b2_notifyV2
Console Errors: Check the server and client console for any errors that may indicate what the issue is.
File Paths: Ensure all file paths are correct, and the folder structure matches the provided structure.
Dependencies: Make sure all dependencies like Vue.js, Tailwind CSS, and Font Awesome are properly included in
index.html
.
Sound Issues
File Paths: Verify that the sound files are located in the
html/sounds
folder and are named correctly (success.wav
,error.wav
,warning.wav
,info.wav
).Audio Tags: Ensure the
<audio>
tags inindex.html
reference the correct file paths.
Overlapping Notifications
Positioning: Ensure that notifications are assigned to the correct position to avoid overlap.
Stacking Logic: The system should already handle stacking. If notifications are overlapping, verify that the
getNotificationsByPosition
method in the Vue.js script is correctly filtering notifications by their position.
Last updated