From 0615a94cae638f0a86c3252ee8a12529be1cf1bb Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 3 Jan 2022 00:08:36 +0100 Subject: [PATCH] spotify: fix license when registering plugin --- audio/spotify/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs index 42d678fd..b9c9dd8b 100644 --- a/audio/spotify/src/lib.rs +++ b/audio/spotify/src/lib.rs @@ -20,7 +20,8 @@ gst::plugin_define!( env!("CARGO_PKG_DESCRIPTION"), plugin_init, concat!(env!("CARGO_PKG_VERSION"), "-", env!("COMMIT_ID")), - "MIT/X11", + // FIXME: MPL-2.0 is only allowed since 1.18.3 (as unknown) and 1.20 (as known) + "MPL", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_NAME"), env!("CARGO_PKG_REPOSITORY"),