A former Loveland police officer pleaded guilty Wednesday to an assault charge in connection with the rough arrest of Karen Garner, an elderly woman with dementia.
Austin Hopp pleaded guilty to second-degree assault as part of a deal with prosecutors. The crime carries a sentence of two to eight years in prison; however, the judge could sentence him to probation rather than prison, officials said.
Hopp and former officer Daria Jalali were charged in May 2021 — nearly a year after the incident — after Garner’s lawyer released body camera footage of the arrest as part of a federal civil rights lawsuit.
Garner left a Loveland store without paying for $14 worth of items. Body camera footage showed Hopp grabbing her arm and pushing her to the ground after she turned away from him.
Hopp then pushed Garner against the hood of his patrol vehicle. Garner attempted to turn around and told officers she was trying to go home. Hopp then pushed her back against the vehicle, bent her arm and said, “Are you finished? Are you finished? We don’t play this game.”
The suit alleged Garner, who was then 73 years old, suffered a dislocated shoulder, broken humerus and a sprained wrist during the June 26, 2020, arrest.
In September, the city agreed to pay the family $3 million in a settlement. Garner’s family indicated that they chose to settle because of Garner’s declining health.
Hopp is scheduled to be sentenced May 5.
Denver Gazette reporter Julia Cardi contributed to this report.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}