diff --git a/youtube.inc b/youtube.inc
index 5ee76e4..c7a808f 100644
--- a/youtube.inc
+++ b/youtube.inc
@@ -362,6 +362,11 @@ function youtube_token_info_alter(&$data) {
     $field_info = field_info_instance($field['entity_type'], $field['field_name'], $field['bundle']);
     $field_label = $field_info['label'];
 
+    // Taxonomy term token type doesn't match the entity type's machine name.
+    if ($field['entity_type'] == 'taxonomy_term') {
+      $field['entity_type'] = 'term';
+    }
+
     // Modify the default field token.
     $data['tokens'][$field['entity_type']][$field['field_name']] = array(
       'name' => $field_label . t(": Default"),
