Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
frontend-auth
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
21af861a
authored
2017-05-17 14:38:40 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix start-of-day handling of cookieName.
1 parent
06c4e4b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/scripts/Auth.js
src/scripts/Auth.js
View file @
21af861
...
...
@@ -156,7 +156,7 @@ define(function(require) {
}
var
sessionId
=
self
.
get
(
'sessionId'
);
if
(
sessionId
)
{
$
.
cookie
(
'cookieName'
,
sessionId
);
$
.
cookie
(
cookieName
,
sessionId
);
}
else
{
self
.
set
(
'sessionId'
,
$
.
cookie
(
cookieName
));
}
...
...
Please
register
or
sign in
to post a comment