Dateline: Secrets Uncovered - What happened to Halee Rathgeber?

In April 2017, Halee Rathgeber, a University of Southern Indiana nursing student, was found shot to death near a soccer complex in Warrick County, a few miles away from her workplace. The cause of her death was a single but fatal gunshot wound to the head. Moreover, when she was found at the site, her belongings were missing.

One of Rathgeber's acquaintances, Isaiah Hagan, who held a reputation for stealing and borrowing money, was connected to the crime based on his location on the night of the murder.

Dateline: Secrets Uncovered chronicles the shooting death of Halee Rathgeber in an episode titled On the Outskirts of Town. The episode is scheduled to re-air on Oxygen this Wednesday, February 8, 2023, at 11.00 pm ET.

The synopsis states:

👉 For more insights, check out this resource.

"Halee Rathgeber enjoys taking care of others and hopes to become a nurse, but what makes no sense is that someone wants her dead; the crime scene tells detectives little, but a jaw-dropping moment in the courtroom speaks volumes."

University of Southern Indiana student Halee Rathgeber was found dead with a gunshot wound to the head

On April 24, 2017, Halee Rathgeber, a 20-year-old nursing student at the University of Southern Indiana, was found shot to death in the parking lot of the Alcoa Soccer Complex in Warrick County. An initial autopsy revealed that she died as a result of a single gunshot wound to the head, which was confirmed by a second examination.

At the crime scene, authorities found that Halee's belongings, including her wallet, phone, and key, were missing. However, they couldn't find any other physical or forensic evidence. Authorities led the investigation completely based on interviews with potential key witnesses and other individuals related to the victim.

👉 Discover more in this in-depth guide.

During the interrogation process, officers discovered that Halee had previously been questioned in connection with a separate murder investigation involving a suspect and acquaintance named Thaddeus Rice. They believed that if she did disclose crucial information about Rice during that investigation, he would have had the perfect motive to murder her. Nevertheless, Rice was soon ruled out as a suspect.


An acquaintance named Isaiah Hagan was behind the shooting death of 20-year-old Halee Rathgeber

Detectives then focused on Isaiah Hagan, an acquaintance of Halee Rathgeber who was known for borrowing or stealing money. He had also taken money from the victim, possibly provoking a conflict between them.

Jake, a common friend between the two, asserted that Hagan had met the victim on the night of the murder.

During a search of Hagan's house, authorities found a towel with Halee's blood on it and also placed the accused at the scene of the crime based on his phone records. He was subsequently arrested and charged with murder, to which he pleaded not guilty.

Isaiah Hagan's initial trial ended in a mistrial. During the second trial, his mother testified claiming that he had confessed to her about accidentally shooting the victim, Halee Rathgeber. She also revealed that Hagan then disposed of the murder weapon in the dumpster.

Isaiah Hagan was found guilty of three charges, including murder, obstruction of justice, and robbery amounting to serious bodily injury due to his mother's testimony and circumstantial evidence. He was given a 60-year jail term in 2018.


Tune in to Dateline: Secrets Uncovered on February 8, 2023, to learn more about Halee's murder.

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1393289, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1393289); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1393289) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1393289) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();