https://bugs.kde.org/show_bug.cgi?id=337276

--- Comment #6 from Rex Dieter <rdie...@math.unl.edu> ---
void NotifyByAudio::notify(KNotification *notification, KNotifyConfig *config)

contains:

    QUrl soundURL = QUrl(soundFilename); // this CTOR accepts both absolute
paths (/usr/share/sounds/blabla.ogg and blabla.ogg) w/o screwing the scheme
    if (soundURL.isRelative() && !soundURL.toString().startsWith('/')) { //
QUrl considers url.scheme.isEmpty() == url.isRelative()
        soundURL =
QUrl::fromLocalFile(QStandardPaths::locate(QStandardPaths::GenericDataLocation,
QStringLiteral("sounds/") + soundFilename));

So it seems only the "relative" cases is currently working (for whatever
reason)

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to