Merge pull request #108 from 3rdyeah/master

Fix a wrong type convert
master
Subhra Das Gupta 2020-04-23 11:06:05 +02:00 committed by GitHub
commit 9d35dc570d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ public class MonitoringSession implements Runnable {
itag = Integer.parseInt(val);
}
if (key.equals("clen")) {
clen = Integer.parseInt(val);
clen = Long.parseLong(val);
}
if (key.startsWith("mime")) {
mime = URLDecoder.decode(val, "UTF-8");