1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Fixed Indexer Health Checks and tests.

This commit is contained in:
Taloth Saldono
2017-02-28 20:59:22 +01:00
parent 37d5a3f2ad
commit 2abaef16f1
12 changed files with 225 additions and 141 deletions
@@ -0,0 +1,17 @@
using System;
namespace NzbDrone.Common.Extensions
{
public static class Base64Extensions
{
public static string ToBase64(this byte[] bytes)
{
return Convert.ToBase64String(bytes);
}
public static string ToBase64(this long input)
{
return BitConverter.GetBytes(input).ToBase64();
}
}
}