fix(Activity): Fix equals() not checking for differing emoji (v13)
#8842 djs
This commit is contained in:
		@@ -300,7 +300,9 @@ class Activity {
 | 
			
		||||
        this.type === activity.type &&
 | 
			
		||||
        this.url === activity.url &&
 | 
			
		||||
        this.state === activity.state &&
 | 
			
		||||
        this.details === activity.details)
 | 
			
		||||
        this.details === activity.details &&
 | 
			
		||||
        this.emoji?.id === activity.emoji?.id &&
 | 
			
		||||
        this.emoji?.name === activity.emoji?.name)
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user