Skip to content

Commit

Permalink
Fix typo that prevented URL previews on a room-account level from bei…
Browse files Browse the repository at this point in the history
…ng saved

Signed-off-by: Travis Ralston <travpc@gmail.com>
  • Loading branch information
turt2live committed Nov 18, 2017
1 parent 1675737 commit cdf5a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/room_settings/UrlPreviewSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = React.createClass({
saveSettings: function() {
const promises = [];
if (this.refs.urlPreviewsRoom) promises.push(this.refs.urlPreviewsRoom.save());
if (this.refs.urlPrviewsSelf) promises.push(this.refs.urlPreviewsSelf.save());
if (this.refs.urlPreviewsSelf) promises.push(this.refs.urlPreviewsSelf.save());
return promises;
},

Expand Down

0 comments on commit cdf5a6f

Please sign in to comment.