diff --git a/plugins/sickbeard/sickbeard_episodes b/plugins/sickbeard/sickbeard_episodes index 2a6eb7d5..4ba5f6f7 100755 --- a/plugins/sickbeard/sickbeard_episodes +++ b/plugins/sickbeard/sickbeard_episodes @@ -47,6 +47,7 @@ graph_title Episodes graph_vlabel Episodes graph_category Sick-Beard down.label Downloaded +down.snatched Snatched total.label Total EOC ; @@ -60,6 +61,7 @@ my $json = JSON::Any->jsonToObj($req->content()); if ($json->{result} eq 'success') { print "down.value $json->{data}->{ep_downloaded}\n"; + print "snatched.value $json->{data}->{ep_snatched}\n"; print "total.value $json->{data}->{ep_total}\n"; exit 0; } else {