fix gif attachment type, fix #61
This commit is contained in:
parent
acad52048a
commit
bc62dc1610
1 changed files with 10 additions and 3 deletions
|
@ -89,8 +89,8 @@ namespace BirdsiteLive.Twitter.Extractors
|
||||||
switch (mediaType)
|
switch (mediaType)
|
||||||
{
|
{
|
||||||
case "photo":
|
case "photo":
|
||||||
var ext = Path.GetExtension(mediaUrl);
|
var pExt = Path.GetExtension(mediaUrl);
|
||||||
switch (ext)
|
switch (pExt)
|
||||||
{
|
{
|
||||||
case ".jpg":
|
case ".jpg":
|
||||||
case ".jpeg":
|
case ".jpeg":
|
||||||
|
@ -101,8 +101,15 @@ namespace BirdsiteLive.Twitter.Extractors
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
case "animated_gif":
|
case "animated_gif":
|
||||||
|
var vExt = Path.GetExtension(mediaUrl);
|
||||||
|
switch (vExt)
|
||||||
|
{
|
||||||
|
case ".gif":
|
||||||
|
return "image/gif";
|
||||||
|
case ".mp4":
|
||||||
|
return "video/mp4";
|
||||||
|
}
|
||||||
return "image/gif";
|
return "image/gif";
|
||||||
|
|
||||||
case "video":
|
case "video":
|
||||||
return "video/mp4";
|
return "video/mp4";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue