Skip to content

Commit 6e60ecf

Browse files
kngraceVesaJuvonen
authored andcommitted
fix bug by correcting the separator character (SharePoint#866)
Proposing a change to this guidance document to reflect bug fix pull request to the source code repository. Pull Request: pnp/sp-dev-fx-webparts#312
1 parent fb30b51 commit 6e60ecf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/spfx/web-parts/guidance/call-microsoft-graph-from-your-web-part.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ AuthenticationContext.prototype._renewToken = function (resource, callback) {
126126
this._renewTokenSuper(resource, callback);
127127
var _renewStates = this._getItem('renewStates');
128128
if (_renewStates) {
129-
_renewStates = _renewStates.split(';');
129+
_renewStates = _renewStates.split(',');
130130
}
131131
else {
132132
_renewStates = [];
@@ -256,4 +256,4 @@ Because client-side applications are incapable of securely storing secrets, and
256256

257257
## More information
258258

259-
- [Authentication Scenarios for Azure AD](https://Azure.microsoft.com/en-us/documentation/articles/active-directory-authentication-scenarios/)
259+
- [Authentication Scenarios for Azure AD](https://Azure.microsoft.com/en-us/documentation/articles/active-directory-authentication-scenarios/)

0 commit comments

Comments
 (0)