diff options
| author | Jonathan Bauer | 2015-07-14 17:23:57 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-07-14 17:23:57 +0200 |
| commit | cc806bcd308fefcc165474840a0e729feb303021 (patch) | |
| tree | 7f38429132805671aab9fea5cb22389d37c6abce | |
| parent | [client] Filter now is case insensitive. Filter and ordering now stable with ... (diff) | |
| download | tutor-module-cc806bcd308fefcc165474840a0e729feb303021.tar.gz tutor-module-cc806bcd308fefcc165474840a0e729feb303021.tar.xz tutor-module-cc806bcd308fefcc165474840a0e729feb303021.zip | |
[client] fix wrong setting of tokens in Session
| -rw-r--r-- | dozentenmodul/src/main/java/org/openslx/dozmod/thrift/Session.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/Session.java b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/Session.java index 6950a743..c4e6bb6b 100644 --- a/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/Session.java +++ b/dozentenmodul/src/main/java/org/openslx/dozmod/thrift/Session.java @@ -39,8 +39,8 @@ public class Session { eMail = response.mail; userId = response.userId; organizationId = response.organizationId; - masterToken = response.token; - satelliteToken = response.sessionId; + masterToken = response.sessionId; + satelliteToken = response.token; } /** |
