Skip to content

Commit d6bf863

Browse files
committed
Switch to the correct string formatting
1 parent 0340f0c commit d6bf863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/Client/LootLockerServerRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public class LootLockerResponseFactory
171171
/// </summary>
172172
public static T RateLimitExceeded<T>(string method, int secondsLeftOfRateLimit) where T : LootLockerResponse, new()
173173
{
174-
return Error<T>(string.Format("Your request to %s was not sent. You are sending too many requests and are being rate limited for %d seconds", method, secondsLeftOfRateLimit));
174+
return Error<T>(string.Format("Your request to {0} was not sent. You are sending too many requests and are being rate limited for {1} seconds", method, secondsLeftOfRateLimit));
175175
}
176176
}
177177

0 commit comments

Comments
 (0)