mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	webhooks: Fix travis display emoji for Pending status.
				
					
				
			The 🔄 emoji is spelled  :counterclockwise: in Zulip.
			
			
This commit is contained in:
		@@ -39,7 +39,7 @@ def api_travis_webhook(request: HttpRequest, user_profile: UserProfile,
 | 
				
			|||||||
    elif message_status in BAD_STATUSES:
 | 
					    elif message_status in BAD_STATUSES:
 | 
				
			||||||
        emoji = ':thumbs_down:'
 | 
					        emoji = ':thumbs_down:'
 | 
				
			||||||
    elif message_status in PENDING_STATUSES:
 | 
					    elif message_status in PENDING_STATUSES:
 | 
				
			||||||
        emoji = ':arrows_counterclockwise:'
 | 
					        emoji = ':counterclockwise:'
 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
        emoji = "(No emoji specified for status '{}'.)".format(message_status)
 | 
					        emoji = "(No emoji specified for status '{}'.)".format(message_status)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user