Skip to content

Commit f2bf1d8

Browse files
committed
epic copy paste fail fix
1 parent 399746f commit f2bf1d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Refresh.Core/Services/CacheService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ public void UpdateUserHeartedStatusByUser(GameUser source, GameUser target, bool
301301
public void CacheOwnLevelRelations(GameUser source, GameLevel target, OwnLevelRelations newData)
302302
{
303303
DateTimeOffset expiresAt = this._time.TimeProvider.Now.AddSeconds(LevelCacheDurationSeconds);
304-
this.Log("Refreshing OwnUserRelations cache by user {0} for level {1}, they will expire at {2}", source, target, expiresAt);
304+
this.Log("Refreshing OwnLevelRelations cache by user {0} for level {1}, they will expire at {2}", source, target, expiresAt);
305305

306306
if (!this._cachedOwnLevelRelations.ContainsKey(source.UserId))
307307
this._cachedOwnLevelRelations[source.UserId] = [];
@@ -316,7 +316,7 @@ public CachedReturn<OwnLevelRelations> GetOwnLevelRelations(GameUser source, Gam
316316

317317
if (this.HasCacheExpired(fromCache))
318318
{
319-
this.Log("Looking up OwnUserRelations by user {0} for level {1} in DB", source, target);
319+
this.Log("Looking up OwnLevelRelations by user {0} for level {1} in DB", source, target);
320320
OwnLevelRelations refreshed = new()
321321
{
322322
IsHearted = database.IsLevelFavouritedByUser(target, source),

0 commit comments

Comments
 (0)