aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Reports/Common/ReportHelper.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-05-23 18:09:00 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-05-23 18:09:00 -0400
commitd9c4775015d7da334f240fca1fffb391ee7045da (patch)
tree49d0a41d6ef15e8fd3a203543b6e5a1730a33d87 /MediaBrowser.Api/Reports/Common/ReportHelper.cs
parent6315f9b863c7a119eeb2cf1828ab92d23e579a27 (diff)
parenta325b479a69f993a5ce30abfe639765abc8c2a67 (diff)
Merge branch 'dev' of https://github.com/MediaBrowser/MediaBrowser into dev
Diffstat (limited to 'MediaBrowser.Api/Reports/Common/ReportHelper.cs')
-rw-r--r--MediaBrowser.Api/Reports/Common/ReportHelper.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Reports/Common/ReportHelper.cs b/MediaBrowser.Api/Reports/Common/ReportHelper.cs
index 306b3e749..a557248c6 100644
--- a/MediaBrowser.Api/Reports/Common/ReportHelper.cs
+++ b/MediaBrowser.Api/Reports/Common/ReportHelper.cs
@@ -87,6 +87,8 @@ namespace MediaBrowser.Api.Reports
return string.Format("{0:t}", value);
case ReportFieldType.DateTime:
return string.Format("{0:d}", value);
+ case ReportFieldType.Minutes:
+ return string.Format("{0}mn", value);
case ReportFieldType.Int:
return string.Format("", value);
default: