From f6bd8ac9ab744c98d180938a1746d9a0d1ac644b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 17 Feb 2025 14:46:43 -0400 Subject: [PATCH] OsPath build fix --- Annex/Notification.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Annex/Notification.hs b/Annex/Notification.hs index f205797359..82779b1f2d 100644 --- a/Annex/Notification.hs +++ b/Annex/Notification.hs @@ -60,7 +60,7 @@ notifyDrop (AssociatedFile (Just f)) ok = do wanted <- Annex.getRead Annex.desktopnotify when (notifyFinish wanted) $ liftIO $ do client <- DBus.Client.connectSession - void $ Notify.notify client (droppedNote ok (fromRawFilePath f)) + void $ Notify.notify client (droppedNote ok (fromOsPath f)) #else notifyDrop (AssociatedFile (Just _)) _ = noop #endif