mirror of
https://github.com/mm201/GamestatsBase.git
synced 2026-04-25 15:50:02 -05:00
Allow token requests to contain other querystring arguments. (needed by Tetris DS)
This commit is contained in:
parent
5dc48aad01
commit
d39942196c
|
|
@ -76,7 +76,8 @@ namespace GamestatsBase
|
|||
if (qmPos >= 0)
|
||||
rawPath = rawPath.Substring(0, qmPos);
|
||||
|
||||
if (context.Request.QueryString.Count == 1)
|
||||
if (context.Request.QueryString["data"] == null &&
|
||||
context.Request.QueryString["hash"] == null)
|
||||
{
|
||||
// this is a new session request
|
||||
GamestatsSession session = CreateSession(pid, rawPath);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user