We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b17b5f commit deb3f01Copy full SHA for deb3f01
1 file changed
Runtime/Aptabase.cs
@@ -3,6 +3,7 @@
3
using System.Threading;
4
using System.Threading.Tasks;
5
using UnityEngine;
6
+using Random = UnityEngine.Random;
7
8
namespace AptabaseSDK
9
{
@@ -165,7 +166,7 @@ private static int GetFlushInterval()
165
166
return _env.isDebug ? 2000 : 60000;
167
}
168
- public static string NewSessionId()
169
+ private static string NewSessionId()
170
171
var epochInSeconds = DateTimeOffset.UtcNow.ToUnixTimeSeconds();
172
var random = Random.Range(0, 99999999);
0 commit comments