Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Why the attached video file is recognized as a music file?

Jiebyoung Park
Contributor
November 18, 2021

From some point on, if I attach a video file, it often is recognized as a music file.

In this case, when I try to play this video file just by clicking in the page, it plays as a music. so I should download and play it in the local.

20211119_Friday_111140.png

1 answer

0 votes
Ubisoft
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 17, 2013

You may want to try a Groovy script that will add a watcher depending on a custom field value.

For ex, I did this one for one of my workflow. Basically it will set the assignee depending on a customfield value upon issue creation. :

import com.atlassian.jira.ComponentManager
def cfManager = ComponentManager.instance.customFieldManager
def cfRadioButton = cfManager.getCustomFieldObjects(issue).find {it.name == 'Need Audio Component'}
String cfValue = issue.getCustomFieldValue(cfRadioButton).getValue()
    if (cfValue == "Landmark") {
issue.setAssignee(ComponentManager.instance.userUtil.getUserObject('leadaudio'))
    }
    else {
issue.setAssignee(ComponentManager.instance.userUtil.getUserObject('defaultaudio'))

}

Suggest an answer

Log in or Sign up to answer