From 3c735d9df364b104080272ccfc826953bc1bd41f Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Mon, 29 Jan 2018 22:31:41 -0500 Subject: [PATCH] Remove committee-ID-fetching functionality This is being moved back into Machine. Toward #59 and #33. --- bin/save_metadata.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/bin/save_metadata.php b/bin/save_metadata.php index 2e365b3..6b92228 100644 --- a/bin/save_metadata.php +++ b/bin/save_metadata.php @@ -42,19 +42,6 @@ */ $metadata = json_decode(file_get_contents($video_dir . 'metadata.json')); -/* - * Identify the committee ID for this video. - */ -if ($metadata->type == 'committee') -{ - - $committee = new Committee; - $committee->chamber = $metadata->chamber; - $committee->name = $metadata->committee; - $metadata->committee_id = $committee->get_id; - -} - /* * Instantiate the video class */