Merge pull request #5381 from matrix-org/t3chguy/fix/15597

Fix Widget OpenID Permissions for realsies
pull/21833/head
Michael Telatynski 2020-10-30 22:26:13 +00:00 committed by GitHub
commit 848893359e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ export default class WidgetOpenIDPermissionsDialog extends React.Component {
"A widget located at %(widgetUrl)s would like to verify your identity. " +
"By allowing this, the widget will be able to verify your user ID, but not " +
"perform actions as you.", {
widgetUrl: this.props.widgetUrl,
widgetUrl: this.props.widgetUrl.split("?")[0],
},
)}
</p>

View File

@ -250,7 +250,7 @@ export class StopGapWidget extends EventEmitter {
// Actually ask for permission to send the user's data
Modal.createTrackedDialog("OpenID widget permissions", '', WidgetOpenIDPermissionsDialog, {
widgetUrl: rawUrl.includes("?") ? rawUrl.substr(0, rawUrl.indexOf("?")) : rawUrl,
widgetUrl: rawUrl,
widgetId: this.widgetId,
isUserWidget: this.appTileProps.userWidget,