I found an error in hooks/emfield.php on line 84.

function EMMODULE_PROVIDER_extract($embed, $field) {
  return array(
    '@example\.com/video/(*+)@i'
    '@example\.com/rss/video/(*+)@i'
  );
}

should be

function EMMODULE_PROVIDER_extract($embed, $field) {
  return array(
    '@example\.com/video/(*+)@i',
    '@example\.com/rss/video/(*+)@i'
  );
}

note the coma after the first regex in the array

Comments

aaron’s picture

Status: Active » Fixed

@cangeceiro: awesome, thanks for the catch!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.