Send credentials for favourited_by and reblogged_by API endpoints
This ensures the data is fetchable on private instances
This commit is contained in:
		
							parent
							
								
									6e14fb292c
								
							
						
					
					
						commit
						40005240eb
					
				
					 1 changed files with 12 additions and 4 deletions
				
			
		|  | @ -880,12 +880,20 @@ const fetchPoll = ({ pollId, credentials }) => { | ||||||
|   ) |   ) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| const fetchFavoritedByUsers = ({ id }) => { | const fetchFavoritedByUsers = ({ id, credentials }) => { | ||||||
|   return promisedRequest({ url: MASTODON_STATUS_FAVORITEDBY_URL(id) }).then((users) => users.map(parseUser)) |   return promisedRequest({ | ||||||
|  |     url: MASTODON_STATUS_FAVORITEDBY_URL(id), | ||||||
|  |     method: 'GET', | ||||||
|  |     credentials | ||||||
|  |   }).then((users) => users.map(parseUser)) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| const fetchRebloggedByUsers = ({ id }) => { | const fetchRebloggedByUsers = ({ id, credentials }) => { | ||||||
|   return promisedRequest({ url: MASTODON_STATUS_REBLOGGEDBY_URL(id) }).then((users) => users.map(parseUser)) |   return promisedRequest({ | ||||||
|  |     url: MASTODON_STATUS_REBLOGGEDBY_URL(id), | ||||||
|  |     method: 'GET', | ||||||
|  |     credentials | ||||||
|  |   }).then((users) => users.map(parseUser)) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| const fetchEmojiReactions = ({ id, credentials }) => { | const fetchEmojiReactions = ({ id, credentials }) => { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Mark Felder
						Mark Felder