Changeset

8930:2e45b1b47918

Backed out changeset d41f8ce67c8e Turns out this argument wasn’t only in trunk, but has been like this since 81406277279e
author Kim Alvefur <zash@zash.se>
date Tue, 26 Jun 2018 02:40:06 +0200
parents 8929:415b2e9d8ba8
children 8931:ae84911c1441
files plugins/muc/subject.lib.lua
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/muc/subject.lib.lua	Tue Jun 26 02:24:56 2018 +0200
+++ b/plugins/muc/subject.lib.lua	Tue Jun 26 02:40:06 2018 +0200
@@ -13,7 +13,7 @@
 local muc_util = module:require "muc/util";
 local valid_roles = muc_util.valid_roles;
 
-local function create_subject_message(subject, from)
+local function create_subject_message(from, subject)
 	return st.message({from = from; type = "groupchat"})
 		:tag("subject"):text(subject or ""):up();
 end
@@ -54,7 +54,7 @@
 
 local function get_subject(room)
 	-- a <message/> stanza from the room JID (or from the occupant JID of the entity that set the subject)
-	return room._data.subject, room._data.subject_from or room.jid;
+	return room._data.subject_from or room.jid, room._data.subject;
 end
 
 local function send_subject(room, to, time)
@@ -70,14 +70,14 @@
 	room:route_stanza(msg);
 end
 
-local function set_subject(room, subject, from)
+local function set_subject(room, from, subject)
 	if subject == "" then subject = nil; end
-	local old_subject, old_from = get_subject(room);
+	local old_from, old_subject = get_subject(room);
 	if old_subject == subject and old_from == from then return false; end
 	room._data.subject_from = from;
 	room._data.subject = subject;
 	room._data.subject_time = os.time();
-	local msg = create_subject_message(subject, from);
+	local msg = create_subject_message(from, subject);
 	room:broadcast_message(msg);
 	return true;
 end
@@ -99,7 +99,7 @@
 		local role_rank = valid_roles[occupant and occupant.role or "none"];
 		if role_rank >= valid_roles.moderator or
 			( role_rank >= valid_roles.participant and get_changesubject(room) ) then -- and participant
-			set_subject(room, subject:get_text(), occupant.nick);
+			set_subject(room, occupant.nick, subject:get_text());
 			room:save();
 			return true;
 		else