# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1736438239 0
# Node ID 61422d3c60fb9e50577cfdab53ad55e8bae1f220
# Parent  fc521fb5ffa0b5db262ced83566881b0edd52087
mod_cloud_notify: Prevent loading if Prosody indicates it is already bundled

This ensures the bundled version will always be preferred.

diff -r fc521fb5ffa0 -r 61422d3c60fb mod_cloud_notify/mod_cloud_notify.lua
--- a/mod_cloud_notify/mod_cloud_notify.lua	Wed Jan 08 09:21:25 2025 +0100
+++ b/mod_cloud_notify/mod_cloud_notify.lua	Thu Jan 09 15:57:19 2025 +0000
@@ -4,6 +4,9 @@
 --
 -- This file is MIT/X11 licensed.
 
+-- This module is only for 0.12, later versions have mod_cloud_notify bundled
+--% conflicts: mod_cloud_notify
+
 local os_time = os.time;
 local st = require"util.stanza";
 local jid = require"util.jid";