Skip to content

Commit

Permalink
fix(Demo): Trim custom manifestUri to avoid copy-paste errors (#5378)
Browse files Browse the repository at this point in the history
  • Loading branch information
avelad authored Jun 29, 2023
1 parent 8b6c8e8 commit 0e32256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ shakaDemo.Custom = class {
this.manifestField_ = input;
};
const manifestOnChange = (input) => {
assetInProgress.manifestUri = input.value;
assetInProgress.manifestUri = input.value.trim();
};
const manifestURLName = shakaDemoMain.getLocalizedString(
shakaDemo.MessageIds.MANIFEST_URL);
Expand Down

0 comments on commit 0e32256

Please sign in to comment.