|
@@ -1,3 +1,4 @@
|
|
|
+using System.Net;
|
|
|
using InABox.API;
|
|
|
using InABox.Core;
|
|
|
using InABox.Database;
|
|
@@ -29,7 +30,9 @@ namespace InABox.Rpc
|
|
|
var store = DbFactory.FindStore(parameters.Type, user.ID, user.UserID, session.Platform, session.Version ?? "");
|
|
|
|
|
|
store.Save(entities, parameters.AuditNote);
|
|
|
-
|
|
|
+
|
|
|
+ InABox.API.CredentialsCache.Refresh(parameters.Type == typeof(InABox.Core.User));
|
|
|
+
|
|
|
var deltas = new Dictionary<string, object?>[entities.Length];
|
|
|
for (int i = 0; i < entities.Length; ++i)
|
|
|
{
|