null pointer fix

Daniel Gultsch created

Change summary

src/eu/siacs/conversations/xml/Tag.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

src/eu/siacs/conversations/xml/Tag.java 🔗

@@ -56,11 +56,11 @@ public class Tag {
 	}
 	
 	public boolean isStart(String needle) {
-		return (this.type == START) && (this.name.equals(needle));
+		return (this.type == START) && (needle.equals(this.name));
 	}
 	
 	public boolean isEnd(String needle) {
-		return (this.type == END) && (this.name.equals(needle));
+		return (this.type == END) && (needle.equals(this.name));
 	}
 	
 	public boolean isNo() {